[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[jetty-commit] r1353 - eclipse/trunk
|
- From: genie@xxxxxxxxxxx
- Date: Fri, 5 Mar 2010 18:11:31 -0500 (EST)
- Delivered-to: jetty-commit@eclipse.org
Author: jmcconnell
Date: 2010-03-05 18:11:27 -0500 (Fri, 05 Mar 2010)
New Revision: 1353
Modified:
eclipse/trunk/sign.xml
Log:
making sure we can get zip file to root for sending off to signing
Modified: eclipse/trunk/sign.xml
===================================================================
--- eclipse/trunk/sign.xml 2010-03-05 22:55:34 UTC (rev 1352)
+++ eclipse/trunk/sign.xml 2010-03-05 23:11:27 UTC (rev 1353)
@@ -1,25 +1,11 @@
-<project name="jetty-sign" default="signMasterZip">
- <property name="writableBuildRoot" value="${basedir}/tmp"/>
-
- <target name="signMasterZip" if="sign">
- <antcall target="-timestamp" />
- <!-- if running as hudson, use simple path in workspace; if running commandline, connect over ssh to remote staging.priv dir -->
- <if>
- <or>
- <contains string="${user.name}" substring="hudson" />
- <contains string="${user.home}" substring="hudson" />
- </or>
- <then>
- <property name="buildServerUser" value="" />
- <property name="signingDir" value="${writableBuildRoot}/signing" />
- <mkdir dir="${signingDir}" />
- </then>
- <else>
- <!-- user with write perms in staging dir & permission to run /usr/bin/sign -->
- <property name="buildServerUser" value="dashBuild@xxxxxxxxxxxxxxxxx" />
- <property name="signingDir" value="/home/data/httpd/download-staging.priv/commonBuild" />
- </else>
- </if>
+<project name="jetty-sign" default="prepare">
+
+ <property name="buildDirectory" value="${basedir}"/>
+ <property name="buildLabel" value="org.eclipse.jetty.osgi.site"/>
+ <property name="buildId" value="7.0.2-SNAPSHOT"/>
+
+ <target name="prepare">
+ <copy file="${buildDirectory}/${buildLabel}/target/${buildLabel}-${buildId}.zip" todir="."/>
</target>
-</project>
+</project>