Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2012-06-13 09:17:02 +0000
committerMatthias Sohn2012-06-13 09:17:02 +0000
commit7815c9d307f5a58b087bf829a9c693acef7bcfca (patch)
tree0b32d586cdc60bf53bb8c9ffa771c77184516fcd
parent6094f45d5fb83dc84b1665ca7acffe9f8843bfe5 (diff)
downloadegit-github-7815c9d307f5a58b087bf829a9c693acef7bcfca.tar.gz
egit-github-7815c9d307f5a58b087bf829a9c693acef7bcfca.tar.xz
egit-github-7815c9d307f5a58b087bf829a9c693acef7bcfca.zip
Fix paths for signing plugin
Also make these paths configurable by defining them in Maven properties which can be overridden via system properties. Change-Id: I582497b5b6f95e511f3ef80979a068f924f43220 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.mylyn.github-site/pom.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.github-site/pom.xml b/org.eclipse.mylyn.github-site/pom.xml
index e606326f..52214a77 100644
--- a/org.eclipse.mylyn.github-site/pom.xml
+++ b/org.eclipse.mylyn.github-site/pom.xml
@@ -23,6 +23,11 @@
<name>Eclipse EGit Mylyn GitHub Repository</name>
+ <properties>
+ <p2repo-zip-path>${project.build.directory}/github-updatesite.zip-${project.version}.zip</p2repo-zip-path>
+ <signer-input-directory>/home/data/httpd/download-staging.priv/egit-github</signer-input-directory>
+ </properties>
+
<build>
<plugins>
<plugin>
@@ -47,7 +52,7 @@
<execution>
<id>pack</id>
<configuration>
- <inputFile>${project.build.directory}/github-updatesite.zip</inputFile>
+ <inputFile>${p2repo-zip-path}</inputFile>
</configuration>
<phase>package</phase>
<goals>
@@ -57,8 +62,8 @@
<execution>
<id>sign</id>
<configuration>
- <inputFile>${project.build.directory}/github-updatesite.zip</inputFile>
- <signerInputDirectory>/home/data/httpd/download-staging.priv/egit-github</signerInputDirectory>
+ <inputFile>${p2repo-zip-path}</inputFile>
+ <signerInputDirectory>${signer-input-directory}</signerInputDirectory>
</configuration>
<phase>package</phase>
<goals>

Back to the top