2008-11-20 10:08:42 -05:00
|
|
|
#! /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 deploy POI artifacts in a maven repository.
|
|
|
|
#
|
|
|
|
# Note, You should configure your settings.xml and add a server with id=apache-releases:
|
|
|
|
#
|
|
|
|
# <server>
|
|
|
|
# <id>apache-releases</id>
|
|
|
|
# <username>apacheId</username>
|
|
|
|
# <privateKey>/path/to/private/key</privateKey>
|
|
|
|
# </server>
|
|
|
|
#
|
2009-09-28 05:52:34 -04:00
|
|
|
# <profiles>
|
|
|
|
# <profile>
|
|
|
|
# <id>apache-releases</id>
|
|
|
|
# <properties>
|
|
|
|
# <gpg.passphrase><!-- Your GPG passphrase --></gpg.passphrase>
|
|
|
|
# </properties>
|
|
|
|
# </profile>
|
|
|
|
# </profiles>
|
|
|
|
#
|
2008-11-20 10:08:42 -05:00
|
|
|
# Usage:
|
|
|
|
# 1. ant dist
|
2009-09-28 05:52:34 -04:00
|
|
|
# 2. cd build/dist
|
2008-11-20 10:08:42 -05:00
|
|
|
# 3. ./mvn-deploy.sh
|
|
|
|
# @author Yegor Kozlov
|
|
|
|
|
2009-09-28 05:52:34 -04:00
|
|
|
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
|
2009-04-11 09:11:39 -04:00
|
|
|
|
2009-09-28 05:52:34 -04:00
|
|
|
mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
|
2009-04-11 09:11:39 -04:00
|
|
|
-Durl=$M2_REPOSITORY \
|
2008-11-20 10:08:42 -05:00
|
|
|
-Dfile=poi-@VERSION@-@DSTAMP@.jar -DpomFile=poi-@VERSION@.pom
|
2009-09-28 05:52:34 -04:00
|
|
|
scp poi-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi/@VERSION@/
|
2009-11-21 10:30:54 -05:00
|
|
|
scp poi-@VERSION@-sources.* $M2_SCP/org/apache/poi/poi/@VERSION@/
|
2009-09-28 05:52:34 -04:00
|
|
|
|
|
|
|
mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
|
2009-04-11 09:11:39 -04:00
|
|
|
-Durl=$M2_REPOSITORY \
|
2008-11-20 10:08:42 -05:00
|
|
|
-Dfile=poi-scratchpad-@VERSION@-@DSTAMP@.jar -DpomFile=poi-scratchpad-@VERSION@.pom
|
2009-09-28 05:52:34 -04:00
|
|
|
scp poi-scratchpad-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi-scratchpad/@VERSION@/
|
2009-11-21 10:30:54 -05:00
|
|
|
scp poi-scratchpad-@VERSION@-sources.* $M2_SCP/org/apache/poi/poi-scratchpad/@VERSION@/
|
2009-09-28 05:52:34 -04:00
|
|
|
|
|
|
|
mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
|
2009-04-11 09:11:39 -04:00
|
|
|
-Durl=$M2_REPOSITORY \
|
2008-11-20 10:08:42 -05:00
|
|
|
-Dfile=poi-contrib-@VERSION@-@DSTAMP@.jar -DpomFile=poi-contrib-@VERSION@.pom
|
2009-09-28 05:52:34 -04:00
|
|
|
scp poi-contrib-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi-contrib/@VERSION@/
|
2009-11-21 10:30:54 -05:00
|
|
|
scp poi-contrib-@VERSION@-sources.* $M2_SCP/org/apache/poi/poi-contrib/@VERSION@/
|
2009-09-28 05:52:34 -04:00
|
|
|
|
|
|
|
mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
|
2009-04-11 09:11:39 -04:00
|
|
|
-Durl=$M2_REPOSITORY \
|
2008-11-20 10:08:42 -05:00
|
|
|
-Dfile=poi-ooxml-@VERSION@-@DSTAMP@.jar -DpomFile=poi-ooxml-@VERSION@.pom
|
2009-09-28 05:52:34 -04:00
|
|
|
scp poi-ooxml-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi-ooxml/@VERSION@/
|
2009-11-21 10:30:54 -05:00
|
|
|
scp poi-ooxml-@VERSION@-sources.* $M2_SCP/org/apache/poi/poi-ooxml/@VERSION@/
|
|
|
|
|
|
|
|
mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
|
|
|
|
-Durl=$M2_REPOSITORY \
|
2009-11-23 03:43:04 -05:00
|
|
|
-Dfile=poi-examples-@VERSION@-@DSTAMP@.jar -DpomFile=poi-examples-@VERSION@.pom
|
|
|
|
scp poi-examples-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi-examples/@VERSION@/
|
|
|
|
scp poi-examples-@VERSION@-sources.* $M2_SCP/org/apache/poi/poi-examples/@VERSION@/
|
2009-11-21 10:30:54 -05:00
|
|
|
|
|
|
|
mvn gpg:sign-and-deploy-file -DrepositoryId=apache-releases -P apache-releases \
|
|
|
|
-Durl=$M2_REPOSITORY \
|
2009-11-23 03:43:04 -05:00
|
|
|
-Dfile=poi-ooxml-schemas-@VERSION@-@DSTAMP@.jar -DpomFile=poi-ooxml-schemas-@VERSION@.pom
|
|
|
|
scp poi-ooxml-schemas-@VERSION@.pom.asc $M2_SCP/org/apache/poi/poi-ooxml-schemas/@VERSION@/
|
|
|
|
|
2008-11-20 10:08:42 -05:00
|
|
|
|