You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ye...@apache.org on 2009/09/28 11:52:34 UTC

svn commit: r819487 - in /poi/trunk: maven/mvn-deploy.sh src/documentation/release-guide.txt

Author: yegor
Date: Mon Sep 28 09:52:34 2009
New Revision: 819487

URL: http://svn.apache.org/viewvc?rev=819487&view=rev
Log:
improved script for deploying maven artefacts

Modified:
    poi/trunk/maven/mvn-deploy.sh
    poi/trunk/src/documentation/release-guide.txt

Modified: poi/trunk/maven/mvn-deploy.sh
URL: http://svn.apache.org/viewvc/poi/trunk/maven/mvn-deploy.sh?rev=819487&r1=819486&r2=819487&view=diff
==============================================================================
--- poi/trunk/maven/mvn-deploy.sh (original)
+++ poi/trunk/maven/mvn-deploy.sh Mon Sep 28 09:52:34 2009
@@ -25,24 +25,41 @@
 #      <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@/
 

Modified: poi/trunk/src/documentation/release-guide.txt
URL: http://svn.apache.org/viewvc/poi/trunk/src/documentation/release-guide.txt?rev=819487&r1=819486&r2=819487&view=diff
==============================================================================
--- poi/trunk/src/documentation/release-guide.txt (original)
+++ poi/trunk/src/documentation/release-guide.txt Mon Sep 28 09:52:34 2009
@@ -78,12 +78,8 @@
 {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 
@@ -100,7 +96,7 @@
 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 
@@ -111,7 +107,7 @@
 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
@@ -143,10 +139,10 @@
 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. 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org