Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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