Browse Source

Add information concerning the new java-repository

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278300 13f79535-47bb-0310-9956-ffa450edef68
master
Antoine Levy-Lambert 20 years ago
parent
commit
dfa0ee5e42
2 changed files with 16 additions and 3 deletions
  1. +10
    -2
      ReleaseInstructions
  2. +6
    -1
      build.xml

+ 10
- 2
ReleaseInstructions View File

@@ -165,7 +165,15 @@ Note: This document was updated in the context of releasing Ant 1.6.
you'll have to do some house-keeping for the old release: you'll have to do some house-keeping for the old release:


* upload the new release files to * upload the new release files to
/www/www.apache.org/dist/ant/[source|binaries].

from distribution
to /www/www.apache.org/dist/ant/[source|binaries].
and

from java-repository/ant/jars
to /www/www.apache.org/dist/java-repository/ant/jars

this can be done using the target upload of the build.xml this can be done using the target upload of the build.xml


* remove the symbolic links from /www/www.apache.org/dist/ant. * remove the symbolic links from /www/www.apache.org/dist/ant.
@@ -188,7 +196,7 @@ Note: This document was updated in the context of releasing Ant 1.6.
19. Clean up. 19. Clean up.


* remove the remaining files of the previous release from * remove the remaining files of the previous release from
/www/www.apache.org/dist/ant/[source|binary].
/www/www.apache.org/dist/ant/[source|binaries].
This includes the old release notes. This includes the old release notes.


20. Now and perhaps during previous betas any changes on the branch must 20. Now and perhaps during previous betas any changes on the branch must


+ 6
- 1
build.xml View File

@@ -1331,7 +1331,12 @@
<fail unless="ssh.knownhosts" message="set a property with your ssh knownhosts"/> <fail unless="ssh.knownhosts" message="set a property with your ssh knownhosts"/>
<scp todir="${apache.user}@cvs.apache.org:/www/www.apache.org/dist/ant" keyfile="${ssh.keyfile}" passphrase="${ssh.passphrase}" knownhosts="${ssh.knownhosts}"> <scp todir="${apache.user}@cvs.apache.org:/www/www.apache.org/dist/ant" keyfile="${ssh.keyfile}" passphrase="${ssh.passphrase}" knownhosts="${ssh.knownhosts}">
<fileset dir="${dist.base}"> <fileset dir="${dist.base}">
<include name="**/*"/>
<include name="**/*${version}*"/>
</fileset>
</scp>
<scp todir="${apache.user}@cvs.apache.org:/www/www.apache.org/dist/java-repository/ant/jars" keyfile="${ssh.keyfile}" passphrase="${ssh.passphrase}" knownhosts="${ssh.knownhosts}">
<fileset dir="java-repository/ant/jars">
<include name="*${version}*"/>
</fileset> </fileset>
</scp> </scp>
</target> </target>


Loading…
Cancel
Save