diff --git a/build/org.eclipse.pde.build.tests/pom.xml b/build/org.eclipse.pde.build.tests/pom.xml index 7cf5a780e83..ac1fe242205 100644 --- a/build/org.eclipse.pde.build.tests/pom.xml +++ b/build/org.eclipse.pde.build.tests/pom.xml @@ -69,7 +69,7 @@ org.eclipse.rcp.feature.group org.eclipse.platform.feature.group org.eclipse.jdt.feature.group - org.eclipse.equinox.executable + org.eclipse.equinox.executable.feature.group org.eclipse.e4.rcp.feature.group false diff --git a/build/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/Utils.java b/build/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/Utils.java index 22b680c9c28..4599cdc9552 100644 --- a/build/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/Utils.java +++ b/build/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/Utils.java @@ -362,6 +362,7 @@ public static File findExecutable() throws IOException { executableLocation = findExecutable(baseLocation); if (executableLocation != null) { + System.out.println("Found the executable at: " + executableLocation); return executableLocation; } @@ -377,6 +378,7 @@ public static File findExecutable() throws IOException { URI location = bundle.getLocation(); executableLocation = findExecutable(URIUtil.toFile(URIUtil.append(location, "../.."))); if (executableLocation != null) { + System.out.println("Found the executable at: " + executableLocation); return executableLocation; } break; @@ -393,6 +395,7 @@ public static File findExecutable() throws IOException { File fallback1 = new File(baseLocation.getParentFile(), "deltapack/eclipse"); executableLocation = findExecutable(fallback1); if (executableLocation != null) { + System.out.println("Found the executable at: " + executableLocation); return executableLocation; } if (Platform.OS.isMac()) { @@ -406,6 +409,7 @@ public static File findExecutable() throws IOException { executableLocation = findExecutable(fallback2); assertNotNull("All attempts to find the executable failed including fallback to " + fallback1.getAbsolutePath() + " or to " + fallback2.getAbsolutePath(), executableLocation); + System.out.println("Found the executable at: " + executableLocation); return executableLocation; } diff --git a/build/org.eclipse.pde.build.tests/test.xml b/build/org.eclipse.pde.build.tests/test.xml index 951d4407f8f..00de96cc7da 100644 --- a/build/org.eclipse.pde.build.tests/test.xml +++ b/build/org.eclipse.pde.build.tests/test.xml @@ -150,7 +150,7 @@ id="org.eclipse.jdt.feature.group" version="" />