Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.sse.core.tests/pom.xml')
-rw-r--r--tests/org.eclipse.wst.sse.core.tests/pom.xml27
1 files changed, 27 insertions, 0 deletions
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