]> source.dussan.org Git - poi.git/commitdiff
improved the script for uploading maven artefacts, use gpg:sign-and-deploy-file inste...
authorYegor Kozlov <yegor@apache.org>
Sat, 11 Apr 2009 13:11:39 +0000 (13:11 +0000)
committerYegor Kozlov <yegor@apache.org>
Sat, 11 Apr 2009 13:11:39 +0000 (13:11 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@764198 13f79535-47bb-0310-9956-ffa450edef68

maven/mvn-deploy.sh
maven/mvn-sig.sh [deleted file]

index 5879db9512f7bcfd5850843e0b2f344da0d31713..5be574a02614d9d575abd667505cbee6b6052f1c 100755 (executable)
 #   3. ./mvn-deploy.sh 
 # @author Yegor Kozlov
 
-mvn deploy:deploy-file -DrepositoryId=apache-releases \
-  -Durl=@REPOSITORY@ \
+M2_REPOSITORY=@REPOSITORY@
+
+mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases \
+  -Durl=$M2_REPOSITORY \
   -Dfile=poi-@VERSION@-@DSTAMP@.jar -DpomFile=poi-@VERSION@.pom
-mvn deploy:deploy-file -DrepositoryId=apache-releases \
-  -Durl=@REPOSITORY@ \
+mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases \
+  -Durl=$M2_REPOSITORY \
   -Dfile=poi-scratchpad-@VERSION@-@DSTAMP@.jar -DpomFile=poi-scratchpad-@VERSION@.pom
-mvn deploy:deploy-file -DrepositoryId=apache-releases \
-  -Durl=@REPOSITORY@ \
+mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases \
+  -Durl=$M2_REPOSITORY \
   -Dfile=poi-contrib-@VERSION@-@DSTAMP@.jar -DpomFile=poi-contrib-@VERSION@.pom
-mvn deploy:deploy-file -DrepositoryId=apache-releases \
-  -Durl=@REPOSITORY@ \
+mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases \
+  -Durl=$M2_REPOSITORY \
   -Dfile=poi-ooxml-@VERSION@-@DSTAMP@.jar -DpomFile=poi-ooxml-@VERSION@.pom
 
diff --git a/maven/mvn-sig.sh b/maven/mvn-sig.sh
deleted file mode 100755 (executable)
index 8a5ae4d..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-#! /bin/sh
-#
-#   Licensed to the Apache Software Foundation (ASF) under one or more
-#   contributor license agreements.  See the NOTICE file distributed with
-#   this work for additional information regarding copyright ownership.
-#   The ASF licenses this file to You under the Apache License, Version 2.0
-#   (the "License"); you may not use this file except in compliance with
-#   the License.  You may obtain a copy of the License at
-#
-#       http://www.apache.org/licenses/LICENSE-2.0
-#
-#   Unless required by applicable law or agreed to in writing, software
-#   distributed under the License is distributed on an "AS IS" BASIS,
-#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#   See the License for the specific language governing permissions and
-#   limitations under the License.
-#
-# Shell script to copy digital signatures to the Maven repository.
-# Unfortunately "mvn deploy:deploy-file" does not upload *.asc files and we have to upload them after ./mvn-deploy.sh is done.
-#
-#  Usage:
-#   1. Upload release artifacts using ./mvn-deploy.sh 
-#   2. login to people.apache.org and cd to the directory with the release files
-#   3. ./mvn-sig.sh
-# @author Yegor Kozlov
-
-REPO=/www/people.apache.org/repo/m2-ibiblio-rsync-repository/org/apache/poi
-VERSION=@VERSION@
-DSTAMP=@DSTAMP@
-
-artifactId=poi
-cp $artifactId-$VERSION-$DSTAMP.jar.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar.asc
-cp $artifactId-$VERSION.pom.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom.asc
-gpg --verify $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar 
-gpg --verify $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom 
-
-artifactId=poi-contrib
-cp $artifactId-$VERSION-$DSTAMP.jar.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar.asc
-cp $artifactId-$VERSION.pom.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom.asc
-gpg --verify $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar 
-gpg --verify $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom 
-
-artifactId=poi-scratchpad
-cp $artifactId-$VERSION-$DSTAMP.jar.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar.asc
-cp $artifactId-$VERSION.pom.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom.asc
-gpg --verify $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar 
-gpg --verify $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom 
-
-artifactId=poi-ooxml
-cp $artifactId-$VERSION-$DSTAMP.jar.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar.asc
-cp $artifactId-$VERSION.pom.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom.asc
-gpg --verify $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.jar 
-gpg --verify $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom.asc $REPO/$artifactId/$VERSION/$artifactId-$VERSION.pom 
-
-