tycho/tycho-fix-build.patch

151 lines
8.2 KiB
Diff
Raw Normal View History

2014-11-25 16:48:43 +00:00
From 51411f57cb7c92fc6370e321753bf011a35dfa7b Mon Sep 17 00:00:00 2001
2012-06-12 15:06:31 +00:00
From: Roland Grunberg <rgrunber@redhat.com>
Date: Tue, 12 Jun 2012 09:56:38 -0400
Subject: [PATCH] Fix the Tycho build to work on Fedora.
2012-06-12 15:06:31 +00:00
Minor fixes of limited scope needed to have Tycho building on Fedora.
2012-08-07 14:44:21 +00:00
Remove org.eclipse.equinox.concurrent until present in Fedora Eclipse.
2012-09-24 21:06:48 +00:00
Tycho upstream currently depends upon 0.15.0 when building
0.16.0-SNAPSHOT, which doesn't have reactor plugin version checking. In
Fedora we depend on the previously built version which has that version
checking. We must keep previous build version strings different to avoid
a cyclic dependency, but doing so causes the version checking to fail,
so we must provide a way to disable it. Disable by default.
2013-02-28 19:02:25 +00:00
Update to using Jetty 9 API.
Add support for compact profiles (http://openjdk.java.net/jeps/161).
Update to using plexus-archiver 2.6.
2012-06-12 15:06:31 +00:00
Change-Id: Ic8c0514c1fa10ee53580d2654ac6a363ccd66814
---
2014-11-25 16:48:43 +00:00
.../META-INF/MANIFEST.MF | 2 +-
.../eclipse/tycho/p2/target/ee/CustomEEResolutionHandler.java | 2 +-
.../src/main/java/org/eclipse/tycho/test/util/HttpServer.java | 8 ++++++--
.../tycho-bundles-external/tycho-bundles-external.product | 1 -
.../tycho-standalone-p2-director/p2 Director.product | 1 -
.../tycho/core/maven/TychoMavenLifecycleParticipant.java | 4 +++-
.../tycho/plugins/p2/director/ProductArchiverMojo.java | 9 +++------
.../org/eclipse/tycho/test/AbstractTychoIntegrationTest.java | 11 +++++------
8 files changed, 19 insertions(+), 19 deletions(-)
2012-06-12 15:06:31 +00:00
2013-10-24 18:52:56 +00:00
diff --git a/tycho-bundles/org.eclipse.tycho.p2.maven.repository.tests/META-INF/MANIFEST.MF b/tycho-bundles/org.eclipse.tycho.p2.maven.repository.tests/META-INF/MANIFEST.MF
2014-11-25 16:48:43 +00:00
index ad42ac5..b9d68f6 100644
2013-10-24 18:52:56 +00:00
--- a/tycho-bundles/org.eclipse.tycho.p2.maven.repository.tests/META-INF/MANIFEST.MF
+++ b/tycho-bundles/org.eclipse.tycho.p2.maven.repository.tests/META-INF/MANIFEST.MF
@@ -9,7 +9,7 @@ Fragment-Host: org.eclipse.tycho.p2.maven.repository
Require-Bundle: org.junit,
org.eclipse.equinox.p2.publisher,
org.eclipse.equinox.ds,
- org.mockito
+ org.mockito.mockito-core
Import-Package: org.eclipse.tycho.locking.facade,
org.eclipse.tycho.repository.local.testutil,
org.eclipse.tycho.repository.streaming.testutil,
2012-10-17 16:06:40 +00:00
diff --git a/tycho-bundles/org.eclipse.tycho.p2.resolver.impl/src/main/java/org/eclipse/tycho/p2/target/ee/CustomEEResolutionHandler.java b/tycho-bundles/org.eclipse.tycho.p2.resolver.impl/src/main/java/org/eclipse/tycho/p2/target/ee/CustomEEResolutionHandler.java
2014-07-25 15:45:40 +00:00
index 6773a40..c66c991 100644
2012-10-17 16:06:40 +00:00
--- a/tycho-bundles/org.eclipse.tycho.p2.resolver.impl/src/main/java/org/eclipse/tycho/p2/target/ee/CustomEEResolutionHandler.java
+++ b/tycho-bundles/org.eclipse.tycho.p2.resolver.impl/src/main/java/org/eclipse/tycho/p2/target/ee/CustomEEResolutionHandler.java
@@ -59,7 +59,7 @@ class CustomEEResolutionHandler extends ExecutionEnvironmentResolutionHandler {
String name = capability.getName();
String version = capability.getVersion().toString();
- if (JREAction.NAMESPACE_OSGI_EE.equals(namespace)) {
+ if ("osgi.ee".equals(namespace)) {
result.add(new SystemCapability(Type.OSGI_EE, name, version));
} else if (PublisherHelper.CAPABILITY_NS_JAVA_PACKAGE.equals(namespace)) {
result.add(new SystemCapability(Type.JAVA_PACKAGE, name, version));
2013-02-28 19:02:25 +00:00
diff --git a/tycho-bundles/org.eclipse.tycho.test.utils/src/main/java/org/eclipse/tycho/test/util/HttpServer.java b/tycho-bundles/org.eclipse.tycho.test.utils/src/main/java/org/eclipse/tycho/test/util/HttpServer.java
2014-11-25 16:48:43 +00:00
index 42c6a5a..47423e5 100644
2013-02-28 19:02:25 +00:00
--- a/tycho-bundles/org.eclipse.tycho.test.utils/src/main/java/org/eclipse/tycho/test/util/HttpServer.java
+++ b/tycho-bundles/org.eclipse.tycho.test.utils/src/main/java/org/eclipse/tycho/test/util/HttpServer.java
2014-11-25 16:48:43 +00:00
@@ -17,6 +17,11 @@ import java.util.List;
2013-04-02 15:40:08 +00:00
import java.util.Map;
import java.util.Random;
+import org.eclipse.jetty.security.ConstraintMapping;
+import org.eclipse.jetty.security.ConstraintSecurityHandler;
+import org.eclipse.jetty.security.HashLoginService;
2013-02-28 19:02:25 +00:00
+import org.eclipse.jetty.server.AbstractNetworkConnector;
2014-11-25 16:48:43 +00:00
+import org.eclipse.jetty.server.Connector;
2013-02-28 19:02:25 +00:00
import org.eclipse.jetty.server.Server;
2014-11-25 16:48:43 +00:00
import org.eclipse.jetty.server.ServerConnector;
2013-02-28 19:02:25 +00:00
import org.eclipse.jetty.servlet.ServletContextHandler;
2014-11-25 16:48:43 +00:00
@@ -76,8 +81,7 @@ public class HttpServer extends ExternalResource {
2013-02-28 19:02:25 +00:00
2013-04-02 15:40:08 +00:00
private static RunningServer startServerOnPort(int port) throws Exception {
Server jetty = new Server();
2014-11-25 16:48:43 +00:00
- ServerConnector connector = new ServerConnector(jetty);
- connector.setHost("localhost");
2013-04-02 15:40:08 +00:00
+ AbstractNetworkConnector connector = new ServerConnector(jetty);
2013-02-28 19:02:25 +00:00
connector.setPort(port);
2013-04-02 15:40:08 +00:00
jetty.addConnector(connector);
2012-08-07 14:44:21 +00:00
diff --git a/tycho-bundles/tycho-bundles-external/tycho-bundles-external.product b/tycho-bundles/tycho-bundles-external/tycho-bundles-external.product
2014-11-25 16:48:43 +00:00
index 76516e5..7c99168 100644
2012-08-07 14:44:21 +00:00
--- a/tycho-bundles/tycho-bundles-external/tycho-bundles-external.product
+++ b/tycho-bundles/tycho-bundles-external/tycho-bundles-external.product
2014-07-25 15:45:40 +00:00
@@ -43,7 +43,6 @@
2012-08-07 14:44:21 +00:00
<plugin id="org.eclipse.ecf.ssl" fragment="true"/>
<plugin id="org.eclipse.equinox.app"/>
<plugin id="org.eclipse.equinox.common"/>
- <plugin id="org.eclipse.equinox.concurrent"/>
<plugin id="org.eclipse.equinox.ds"/>
<plugin id="org.eclipse.equinox.frameworkadmin"/>
<plugin id="org.eclipse.equinox.frameworkadmin.equinox"/>
diff --git a/tycho-bundles/tycho-standalone-p2-director/p2 Director.product b/tycho-bundles/tycho-standalone-p2-director/p2 Director.product
2014-07-25 15:45:40 +00:00
index 6739b3a..af9237b 100644
2012-08-07 14:44:21 +00:00
--- a/tycho-bundles/tycho-standalone-p2-director/p2 Director.product
+++ b/tycho-bundles/tycho-standalone-p2-director/p2 Director.product
2013-04-02 15:40:08 +00:00
@@ -42,7 +42,6 @@
2012-08-07 14:44:21 +00:00
<plugin id="org.eclipse.ecf.ssl" fragment="true"/>
<plugin id="org.eclipse.equinox.app"/>
<plugin id="org.eclipse.equinox.common"/>
- <plugin id="org.eclipse.equinox.concurrent"/>
<plugin id="org.eclipse.equinox.ds"/>
<plugin id="org.eclipse.equinox.frameworkadmin"/>
<plugin id="org.eclipse.equinox.frameworkadmin.equinox"/>
2012-09-24 21:06:48 +00:00
diff --git a/tycho-core/src/main/java/org/eclipse/tycho/core/maven/TychoMavenLifecycleParticipant.java b/tycho-core/src/main/java/org/eclipse/tycho/core/maven/TychoMavenLifecycleParticipant.java
2014-11-25 16:48:43 +00:00
index b71b858..1160f6c 100644
2012-09-24 21:06:48 +00:00
--- a/tycho-core/src/main/java/org/eclipse/tycho/core/maven/TychoMavenLifecycleParticipant.java
+++ b/tycho-core/src/main/java/org/eclipse/tycho/core/maven/TychoMavenLifecycleParticipant.java
2014-11-25 16:48:43 +00:00
@@ -84,7 +84,9 @@ public class TychoMavenLifecycleParticipant extends AbstractMavenLifecyclePartic
2012-09-24 21:06:48 +00:00
}
private void validate(List<MavenProject> projects) throws MavenExecutionException {
- validateConsistentTychoVersion(projects);
+ if (System.getProperty("tycho.enableVersionCheck") != null) {
2012-09-24 21:06:48 +00:00
+ validateConsistentTychoVersion(projects);
+ }
validateUniqueBaseDirs(projects);
}
2012-08-07 14:44:21 +00:00
diff --git a/tycho-testing-harness/src/main/java/org/eclipse/tycho/test/AbstractTychoIntegrationTest.java b/tycho-testing-harness/src/main/java/org/eclipse/tycho/test/AbstractTychoIntegrationTest.java
2013-10-24 18:52:56 +00:00
index a8173df..cf2cf57 100644
2012-08-07 14:44:21 +00:00
--- a/tycho-testing-harness/src/main/java/org/eclipse/tycho/test/AbstractTychoIntegrationTest.java
+++ b/tycho-testing-harness/src/main/java/org/eclipse/tycho/test/AbstractTychoIntegrationTest.java
2013-10-24 18:52:56 +00:00
@@ -110,12 +110,11 @@ public abstract class AbstractTychoIntegrationTest {
2012-08-07 14:44:21 +00:00
verifier.getCliOptions().add(customOptions);
}
- if (System.getProperty(SYSPROP_STATELOCATION) != null) {
- verifier.setForkJvm(false);
- String m2eresolver = System.getProperty("tychodev-maven.ext.class.path"); // XXX
- if (m2eresolver != null) {
- verifier.addCliOption("-Dmaven.ext.class.path=" + m2eresolver);
- }
+ String m2eState = System.getProperty("m2eclipse.workspace.state");
+ String m2eResolver = System.getProperty("m2eclipse.workspace.resolver");
+
+ if (m2eState != null && m2eResolver != null) {
+ verifier.getVerifierProperties().put("m2eclipse.workspace.state", m2eState);
}
return verifier;
2012-06-12 15:06:31 +00:00
--
2014-07-25 15:45:40 +00:00
1.9.3
2012-06-12 15:06:31 +00:00