Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2013-09-30 14:49:38 +0000
committerMatthias Sohn2013-09-30 15:00:38 +0000
commitce1be293d9be07a9f9a2ec66261ba81b490d7118 (patch)
tree5ac9c576271bffba5c7c9415263ec46b923c7d04 /org.eclipse.mylyn.github-site/pom.xml
parentdc4a6439fa8e8ca2785cdf149b9ac3b757372f75 (diff)
downloadegit-github-ce1be293d9be07a9f9a2ec66261ba81b490d7118.tar.gz
egit-github-ce1be293d9be07a9f9a2ec66261ba81b490d7118.tar.xz
egit-github-ce1be293d9be07a9f9a2ec66261ba81b490d7118.zip
Update build to use CBI jarsigner plugin and Tycho 0.18.1
The dash signing plugin has been retired hence we need to update our build to use the CBI jarsigner plugin for signing build results. Change-Id: I0046663afdacd07460267f05085f79ae4a69218d Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.mylyn.github-site/pom.xml')
-rw-r--r--org.eclipse.mylyn.github-site/pom.xml63
1 files changed, 7 insertions, 56 deletions
diff --git a/org.eclipse.mylyn.github-site/pom.xml b/org.eclipse.mylyn.github-site/pom.xml
index 3c3404b1..0d3c1d3b 100644
--- a/org.eclipse.mylyn.github-site/pom.xml
+++ b/org.eclipse.mylyn.github-site/pom.xml
@@ -23,11 +23,6 @@
<name>Eclipse EGit Mylyn GitHub Repository</name>
- <properties>
- <p2repo-zip-path>${project.build.directory}/github-updatesite-${project.version}.zip</p2repo-zip-path>
- <signer-input-directory>/home/data/httpd/download-staging.priv/egit-github</signer-input-directory>
- </properties>
-
<build>
<plugins>
<plugin>
@@ -40,56 +35,13 @@
</plugin>
</plugins>
</build>
- <profiles>
+
+ <profiles>
<profile>
- <id>build-server</id>
+ <id>publish</id>
<build>
<plugins>
<plugin>
- <groupId>org.eclipse.dash.maven</groupId>
- <artifactId>eclipse-signing-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>pack</id>
- <configuration>
- <inputFile>${p2repo-zip-path}</inputFile>
- </configuration>
- <phase>package</phase>
- <goals>
- <goal>pack</goal>
- </goals>
- </execution>
- <execution>
- <id>sign</id>
- <configuration>
- <inputFile>${p2repo-zip-path}</inputFile>
- <signerInputDirectory>${signer-input-directory}</signerInputDirectory>
- </configuration>
- <phase>package</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- <execution>
- <id>repack</id>
- <configuration>
- <inputFile>${project.build.directory}/signed/site_assembly.zip</inputFile>
- </configuration>
- <phase>package</phase>
- <goals>
- <goal>pack</goal>
- </goals>
- </execution>
- <execution>
- <id>fixCheckSums</id>
- <phase>package</phase>
- <goals>
- <goal>fixCheckSums</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
@@ -108,7 +60,7 @@
</delete>
<copy includeemptydirs="false"
todir="${download-publish-path}">
- <fileset dir="target/checksumFix">
+ <fileset dir="target/repository/">
<include name="**" />
</fileset>
</copy>
@@ -117,9 +69,8 @@
</execution>
</executions>
</plugin>
- </plugins>
- </build>
- </profile>
+ </plugins>
+ </build>
+ </profile>
</profiles>
-
</project>

Back to the top