소스 검색

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
tags/REL_3_5_BETA6
Yegor Kozlov 15 년 전
부모
커밋
7e32bc9562
2개의 변경된 파일10개의 추가작업 그리고 63개의 파일을 삭제
  1. 10
    8
      maven/mvn-deploy.sh
  2. 0
    55
      maven/mvn-sig.sh

+ 10
- 8
maven/mvn-deploy.sh 파일 보기

@@ -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


+ 0
- 55
maven/mvn-sig.sh 파일 보기

@@ -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…
취소
저장