Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2014-05-15 15:30:14 +0000
committerNick Sandonato2014-05-15 15:30:54 +0000
commitf3be5d72e445caf5e95be9e350a1273cb2d441fc (patch)
treecf7ad99d34a6b84af066a641f0dfb01ec76e1077
parent6ab6f30e77b6cbaf7f64a3a77924ffcee326bbbe (diff)
downloadwebtools.sourceediting.tests-f3be5d72e445caf5e95be9e350a1273cb2d441fc.tar.gz
webtools.sourceediting.tests-f3be5d72e445caf5e95be9e350a1273cb2d441fc.tar.xz
webtools.sourceediting.tests-f3be5d72e445caf5e95be9e350a1273cb2d441fc.zip
[420738] Determine which eclipse.inf files are necessary for Tycho (CBI builds)
Signed-off-by: Thanh Ha <thanh.ha@eclipse.org>
-rw-r--r--tests/org.eclipse.wst.sse.core.tests/META-INF/eclipse.inf6
-rw-r--r--tests/org.eclipse.wst.sse.core.tests/pom.xml27
2 files changed, 27 insertions, 6 deletions
diff --git a/tests/org.eclipse.wst.sse.core.tests/META-INF/eclipse.inf b/tests/org.eclipse.wst.sse.core.tests/META-INF/eclipse.inf
deleted file mode 100644
index fdcf47ef4..000000000
--- a/tests/org.eclipse.wst.sse.core.tests/META-INF/eclipse.inf
+++ /dev/null
@@ -1,6 +0,0 @@
-# We do not want any nested jars
-# signed or normalized for packing
-# see bug 274743 Some unit tests are sensitive to details of build
-# https://bugs.eclipse.org/bugs/show_bug.cgi?id=274743
-
-jarprocessor.exclude.children=true \ No newline at end of file
diff --git a/tests/org.eclipse.wst.sse.core.tests/pom.xml b/tests/org.eclipse.wst.sse.core.tests/pom.xml
index 6dbe224d5..c9ed81162 100644
--- a/tests/org.eclipse.wst.sse.core.tests/pom.xml
+++ b/tests/org.eclipse.wst.sse.core.tests/pom.xml
@@ -48,4 +48,31 @@
</plugin>
</plugins>
</build>
+
+ <profiles>
+ <profile>
+ <id>eclipse-sign</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-jarsigner-plugin</artifactId>
+ <version>${cbi-plugins.version}</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