blob: 5b60137a27e746d15c6e45b5c60d5e3c6d49eb8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#!/bin/sh
info()
{
echo "make-deploy-one: info: $1" 1>&2
}
if [ $# -ne 2 ]
then
info "usage: name version"
exit 1
fi
NAME="$1"
shift
VERSION="$1"
shift
if [ -z "${REPOSITORY_URL}" -o -z "${REPOSITORY_ID}" ] ; then
REPOSITORY_URL="https://oss.sonatype.org/service/local/staging/deploy/maven2/"
REPOSITORY_ID="sonatype-nexus-staging"
# REPOSITORY_URL="scpexe://jogamp.org/home/mraynsford/repository/"
# REPOSITORY_ID="jogamp-test-mirror"
# REPOSITORY_URL="scpexe://jogamp.org/srv/www/jogamp.org/deployment/maven/"
# REPOSITORY_ID="jogamp-mirror"
fi
info "using repository: ${REPOSITORY_ID} ${REPOSITORY_URL}"
CURRENT_DIR=`pwd` || exit 1
cd "output/${NAME}/${VERSION}" || exit 1
# Maintain a list of extra files, along with their classifiers, to deploy.
DEPLOY_FILES=""
DEPLOY_CLASSIFIERS=""
DEPLOY_TYPES=""
for LINE in `cat manifest.txt`
do
if [ "${LINE}" = "${NAME}.jar" ]
then
true
else
CLASS=`echo ${LINE} | sed "s/^${NAME}-${VERSION}-//g; s/\.jar$//g"`
if [ ! -z "${DEPLOY_FILES}" ]
then
DEPLOY_FILES="${DEPLOY_FILES},${LINE}"
DEPLOY_CLASSIFIERS="${DEPLOY_CLASSIFIERS},${CLASS}"
DEPLOY_TYPES="${DEPLOY_TYPES},jar"
else
DEPLOY_FILES="${LINE}"
DEPLOY_CLASSIFIERS="${CLASS}"
DEPLOY_TYPES="jar"
fi
fi
done
# Deploy everything.
mvn gpg:sign-and-deploy-file \
"-DpomFile=pom.xml" \
"-Dfile=${NAME}.jar" \
"-Dfiles=${DEPLOY_FILES}" \
"-Dclassifiers=${DEPLOY_CLASSIFIERS}" \
"-Dtypes=${DEPLOY_TYPES}" \
"-Durl=${REPOSITORY_URL}" \
"-DrepositoryId=${REPOSITORY_ID}"
|