Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated management of dependencies #1470

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -2802,6 +2802,8 @@ public class PDEUIMessages extends NLS {

public static String SecondaryBundlesSection_resolve;

public static String ExtraClassPathLink;

public static String ArgumentsSection_allPlatforms;

public static String ArgumentsSection_allArch;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ protected void createClient(Section section, FormToolkit toolkit) {

gd = new GridData();
gd.horizontalSpan = 2;
FormText resolveText = toolkit.createFormText(container, true);
resolveText.setText(PDEUIMessages.SecondaryBundlesSection_resolve, true, true);
resolveText.setLayoutData(gd);
FormText buildSectionLinkText = toolkit.createFormText(container, true);
buildSectionLinkText.setText(PDEUIMessages.ExtraClassPathLink, true, true);
buildSectionLinkText.setLayoutData(gd);
resolveText.addHyperlinkListener(new HyperlinkAdapter() {
@Override
public void linkActivated(HyperlinkEvent e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2703,6 +2703,7 @@ OSGiConsoleFactory_title=WARNING: This console is connected to the current runni
NewElement_deprecated={0} (deprecated)
ElementIsDeprecated=Element ''{0}'' is deprecated.

ExtraClassPathLink=<p> You can go the 'Build' page to add additional classpath entries to the plugin classpath. </p>
ExtensionAttributeRow_AttrDepr={0} (deprecated)
ExtensionAttributeRow_AttrReq={0} (required)
ExtensionAttributeRow_AttrReqDepr={0} (required) (deprecated)
Expand Down
Loading