mirror of https://github.com/apache/poi.git
improved the script for uploading maven artefacts, use gpg:sign-and-deploy-file instead of deploy:deploy-file
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@764198 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9312add3f0
commit
7e32bc9562
|
@ -31,16 +31,18 @@
|
|||
# 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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue