Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ui/org.eclipse.pde.bnd.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Bundle-Name: Generic UI components related to BND
Bundle-SymbolicName: org.eclipse.pde.bnd.ui;singleton:=true
Bundle-Vendor: Eclipse.org
Bundle-Version: 1.2.200.qualifier
Bundle-Localization: plugin
Export-Package: org.eclipse.pde.bnd.ui.autocomplete;version="1.0.0";x-friends:="org.eclipse.pde.ui",
org.eclipse.pde.bnd.ui.plugins;x-internal:=true,
org.eclipse.pde.bnd.ui.preferences;version="1.0.0";x-friends:="org.eclipse.pde.ui",
Expand Down
1 change: 1 addition & 0 deletions ui/org.eclipse.pde.bnd.ui/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ output.. = bin/
bin.includes = META-INF/,\
.,\
icons/,\
plugin.properties,\
plugin.xml,\
about.html,\
OSGI-INF/
Expand Down
19 changes: 19 additions & 0 deletions ui/org.eclipse.pde.bnd.ui/plugin.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
###############################################################################
# Copyright (c) 2000, 2009 IBM Corporation and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# IBM Corporation - initial API and implementation
# Christoph Rueger <chrisrueger@gmail.com> - ongoing enhancements
###############################################################################

#pde.bnd view related
views.category.name = OSGi
Comment thread
laeubi marked this conversation as resolved.
osgi.views.repositories.name = Bundle Repositories
osgi.views.resolution.name = OSGi Resolution
6 changes: 3 additions & 3 deletions ui/org.eclipse.pde.bnd.ui/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@
</propertyTester>
</extension>
<extension point="org.eclipse.ui.views">
<category id="pde.bnd.ui.viewCategory" name="OSGi"></category>
<category id="pde.bnd.ui.viewCategory" name="%views.category.name"></category>
<view category="pde.bnd.ui.viewCategory"
class="org.eclipse.pde.bnd.ui.views.repository.RepositoriesView"
icon="icons/database.png" id="pde.bnd.ui.repositoriesView"
name="Bundle Repositories" restorable="true">
name="%osgi.views.repositories.name" restorable="true">
</view>

<view category="pde.bnd.ui.viewCategory"
class="org.eclipse.pde.bnd.ui.views.resolution.ResolutionView"
icon="icons/webresources16.svg" id="pde.bnd.ui.impExpView" name="OSGi Resolution"
icon="icons/webresources16.svg" id="pde.bnd.ui.impExpView" name="%osgi.views.resolution.name"
restorable="true">
</view>
</extension>
Expand Down
Loading