Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-08-27 13:33:44 +0000
committerThomas Watson2013-08-27 13:33:44 +0000
commita0a5bfe06cdf7a0765dadc521c8c7a1fb0ec77f9 (patch)
tree0159b3b9f677fdce7f503e21f8df314541967034 /bundles
parent4c31123dd17651c1a007cea7c3d301401c385567 (diff)
downloadrt.equinox.framework-a0a5bfe06cdf7a0765dadc521c8c7a1fb0ec77f9.tar.gz
rt.equinox.framework-a0a5bfe06cdf7a0765dadc521c8c7a1fb0ec77f9.tar.xz
rt.equinox.framework-a0a5bfe06cdf7a0765dadc521c8c7a1fb0ec77f9.zip
Bug 412850 - Need eclipse.inf in osgi.tests to avoid signing inner jars
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.osgi.tests/pom.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi.tests/pom.xml b/bundles/org.eclipse.osgi.tests/pom.xml
index 05910cc5a..d4345cc4a 100644
--- a/bundles/org.eclipse.osgi.tests/pom.xml
+++ b/bundles/org.eclipse.osgi.tests/pom.xml
@@ -81,5 +81,31 @@
</profile>
</profiles>
+ <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>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ <phase>verify</phase>
+ </execution>
+ </executions>
+ <configuration>
+ <excludeInnerJars>true</excludeInnerJars>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>

Back to the top