Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorUwe Stieber2012-10-07 13:09:08 +0000
committerUwe Stieber2012-10-07 13:09:08 +0000
commitdee8737eeab6d07d8c5dba535e36b827570ba443 (patch)
treed579b8ea32006e474923e076cb7b4af828890ba0 /admin
parentafae2e250c3f9fdabc677970e6048136421cc50e (diff)
downloadorg.eclipse.tcf-dee8737eeab6d07d8c5dba535e36b827570ba443.tar.gz
org.eclipse.tcf-dee8737eeab6d07d8c5dba535e36b827570ba443.tar.xz
org.eclipse.tcf-dee8737eeab6d07d8c5dba535e36b827570ba443.zip
Releng: Play with new eclipse-jarsigner-plugin in order to utilize the Eclipse CBI platform possibilities
Diffstat (limited to 'admin')
-rw-r--r--admin/pom-build.xml16
-rw-r--r--admin/pom-config.xml15
2 files changed, 31 insertions, 0 deletions
diff --git a/admin/pom-build.xml b/admin/pom-build.xml
index 98012fe2e..925e5602f 100644
--- a/admin/pom-build.xml
+++ b/admin/pom-build.xml
@@ -36,6 +36,22 @@
<profiles>
<profile>
+ <id>sign-new</id>
+ <!-- Uses the new jarsigner from the CBI platform -->
+ <!-- Not deployed to nexus yet. Must be build locally -->
+ <!-- before running this profile. -->
+ <!-- See http://wiki.eclipse.org/Platform-releng/Platform_Build#Building for details -->
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-jarsigner-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
+ <profile>
<id>findbugs</id>
<build>
diff --git a/admin/pom-config.xml b/admin/pom-config.xml
index 3d2374c19..239d5e658 100644
--- a/admin/pom-config.xml
+++ b/admin/pom-config.xml
@@ -37,6 +37,7 @@
<findbugs-version>2.5.2</findbugs-version>
<!-- Check available versions at https://repository.sonatype.org/content/repositories/public/org/jacoco/jacoco-maven-plugin -->
<jacoco-version>0.5.9.201207300726</jacoco-version>
+ <eclipse-jarsigner-version>1.0.2-SNAPSHOT</eclipse-jarsigner-version>
<!-- Common global properties -->
<adminDir>${env.WORKSPACE}/admin</adminDir>
@@ -242,6 +243,20 @@
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-version}</version>
</plugin>
+ <plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-jarsigner-plugin</artifactId>
+ <version>${eclipse-jarsigner-version}</version>
+ <executions>
+ <execution>
+ <id>sign</id>
+ <phase>package</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</pluginManagement>
</build>

Back to the top