Updated CI build to send snapshots to dist.springframework.org S3 bucket

This commit is contained in:
Ben Hale
2007-09-12 13:57:42 +00:00
parent d726482e3e
commit ea34e06396

View File

@@ -31,17 +31,17 @@
<format property="tstamp" pattern="yyyyMMdd"/>
</tstamp>
<aws:s3 accessKey="${s3.accessKey}" secretKey="${s3.secretKey}">
<upload bucketName="static.springframework.org"
<upload bucketName="dist.springframework.org"
file="${target.release.dir}/${release.bin.zip}"
toFile="LDAP/spring-ldap-bin-${release.version}-${tstamp}-${build.number}.zip"
toFile="snapshot/LDAP/spring-ldap-bin-${release.version}-${tstamp}-${build.number}.zip"
publicRead="true"/>
<upload bucketName="static.springframework.org"
<upload bucketName="dist.springframework.org"
file="${target.release.dir}/${release.bin.deps.zip}"
toFile="LDAP/spring-ldap-bin-with-dependencies-${release.version}-${tstamp}-${build.number}.zip"
toFile="snapshot/LDAP/spring-ldap-bin-with-dependencies-${release.version}-${tstamp}-${build.number}.zip"
publicRead="true"/>
<upload bucketName="static.springframework.org"
<upload bucketName="dist.springframework.org"
file="${target.release.dir}/${release.buildable.zip}"
toFile="LDAP/spring-ldap-buildable-${release.version}-${tstamp}-${build.number}.zip"
toFile="snapshot/LDAP/spring-ldap-buildable-${release.version}-${tstamp}-${build.number}.zip"
publicRead="true"/>
</aws:s3>
</target>