# <privateKey>/path/to/private/key</privateKey>
# </server>
#
+# <profiles>
+# <profile>
+# <id>apache-releases</id>
+# <properties>
+# <gpg.passphrase><!-- Your GPG passphrase --></gpg.passphrase>
+# </properties>
+# </profile>
+# </profiles>
+#
# Usage:
# 1. ant dist
-# 2. cd dist
+# 2. cd build/dist
# 3. ./mvn-deploy.sh
# @author Yegor Kozlov
-M2_REPOSITORY=@REPOSITORY@
+M2_REPOSITORY=scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository
+M2_SCP=people.apache.org:/www/people.apache.org/repo/m2-ibiblio-rsync-repository
-mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases \
+mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
-Durl=$M2_REPOSITORY \
-Dfile=poi-@VERSION@-@DSTAMP@.jar -DpomFile=poi-@VERSION@.pom
-mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases \
+scp poi-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi/@VERSION@/
+
+mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
-Durl=$M2_REPOSITORY \
-Dfile=poi-scratchpad-@VERSION@-@DSTAMP@.jar -DpomFile=poi-scratchpad-@VERSION@.pom
-mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases \
+scp poi-scratchpad-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi-scratchpad/@VERSION@/
+
+mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
-Durl=$M2_REPOSITORY \
-Dfile=poi-contrib-@VERSION@-@DSTAMP@.jar -DpomFile=poi-contrib-@VERSION@.pom
-mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases \
+scp poi-contrib-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi-contrib/@VERSION@/
+
+mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
-Durl=$M2_REPOSITORY \
-Dfile=poi-ooxml-@VERSION@-@DSTAMP@.jar -DpomFile=poi-ooxml-@VERSION@.pom
+scp poi-ooxml-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi-ooxml/@VERSION@/
{code}
where $TAG is the release tag specified in build.xml in the version.id property, $DATE is the release date (typically +7 days from the actual build date).
- 7. Build Mavn POM files
-{code}
-ant maven-dist
-{code}
- 8. Signing the release artifacts:
+ 7. Signing the release artifacts:
{code}
cd build/dist
for i in *.zip ; do
gpg --multifile --verify *.asc
{code}
- 9. Create MD5 checksums for all artifacts to be published:
+ 8. Create MD5 checksums for all artifacts to be published:
{code}
for i in *.zip ; do
done
{code}
- 10. Upload to your area at people.apache.org.
+ 9. Upload to your area at people.apache.org.
There should be two directories:
main
maven
cp *-bin-* /www/www.apache.org/dist/poi/release/bin
{code}
+copy Maven artifacts
{code}
-cd ~/POI-3.1-BETA1/maven
-cp -r org.apache.poi /www/people.apache.org/repo/m1-ibiblio-rsync-repository/
-cp -r poi/poms /www/people.apache.org/repo/m1-ibiblio-rsync-repository/poi
+cd build/dist
+./mvn-deploy.sh
{code}
2. Make sure that the files are owned by the unix group apcvs and that they are writable by this group.