Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto Sanchez2014-05-09 19:21:34 +0000
committerRoberto Sanchez2014-05-09 19:21:34 +0000
commite32be45fc4111658eb90967a0c10db1c2c7db179 (patch)
tree885a5c49359781aa952ea281883f3bdcff3a1be8
parent6ee8e4822c1eba634ed32c4f59e56a5e5842940c (diff)
downloadwebtools.javaee.tests-e32be45fc4111658eb90967a0c10db1c2c7db179.tar.gz
webtools.javaee.tests-e32be45fc4111658eb90967a0c10db1c2c7db179.tar.xz
webtools.javaee.tests-e32be45fc4111658eb90967a0c10db1c2c7db179.zip
[420738] Determine which eclipse.inf files are necessary for Tycho (CBI builds)
-rw-r--r--tests/org.eclipse.jst.j2ee.core.tests/pom.xml29
-rw-r--r--tests/org.eclipse.jst.j2ee.tests/pom.xml29
-rw-r--r--tests/org.eclipse.jst.jee.tests/pom.xml29
3 files changed, 87 insertions, 0 deletions
diff --git a/tests/org.eclipse.jst.j2ee.core.tests/pom.xml b/tests/org.eclipse.jst.j2ee.core.tests/pom.xml
index 6489b219..87da161f 100644
--- a/tests/org.eclipse.jst.j2ee.core.tests/pom.xml
+++ b/tests/org.eclipse.jst.j2ee.core.tests/pom.xml
@@ -24,4 +24,33 @@
<artifactId>org.eclipse.jst.j2ee.core.tests</artifactId>
<version>1.1.500-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <!-- Do not sign inner jars, see bug 274743 - Some unit tests are sensitive to details of build -->
+ <profiles>
+ <profile>
+ <id>eclipse-sign</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-jarsigner-plugin</artifactId>
+ <version>1.0.5</version>
+ <executions>
+ <execution>
+ <id>sign</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ <configuration>
+ <excludeInnerJars>true</excludeInnerJars>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>
diff --git a/tests/org.eclipse.jst.j2ee.tests/pom.xml b/tests/org.eclipse.jst.j2ee.tests/pom.xml
index 0d248573..913460ce 100644
--- a/tests/org.eclipse.jst.j2ee.tests/pom.xml
+++ b/tests/org.eclipse.jst.j2ee.tests/pom.xml
@@ -24,4 +24,33 @@
<artifactId>org.eclipse.jst.j2ee.tests</artifactId>
<version>1.1.700-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <!-- Do not sign inner jars, see bug 274743 - Some unit tests are sensitive to details of build -->
+ <profiles>
+ <profile>
+ <id>eclipse-sign</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-jarsigner-plugin</artifactId>
+ <version>1.0.5</version>
+ <executions>
+ <execution>
+ <id>sign</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ <configuration>
+ <excludeInnerJars>true</excludeInnerJars>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>
diff --git a/tests/org.eclipse.jst.jee.tests/pom.xml b/tests/org.eclipse.jst.jee.tests/pom.xml
index 8f1edd70..d4a7b658 100644
--- a/tests/org.eclipse.jst.jee.tests/pom.xml
+++ b/tests/org.eclipse.jst.jee.tests/pom.xml
@@ -24,4 +24,33 @@
<artifactId>org.eclipse.jst.jee.tests</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <!-- Do not sign inner jars, see bug 274743 - Some unit tests are sensitive to details of build -->
+ <profiles>
+ <profile>
+ <id>eclipse-sign</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-jarsigner-plugin</artifactId>
+ <version>1.0.5</version>
+ <executions>
+ <execution>
+ <id>sign</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ <configuration>
+ <excludeInnerJars>true</excludeInnerJars>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>

Back to the top