Files
spring-ws/ci/rc-release.sh
Greg L. Turnquist 6ce407543e Introduce smoke testing to release process.
The release process should include the means to do some basic smoke testing against staged artifacts before concluding the process.

Resolves #1347.
2023-04-19 13:47:46 -05:00

15 lines
293 B
Bash
Executable File

#!/bin/bash -x
set -euo pipefail
STAGING_REPOSITORY_ID=$1
echo 'Release to Maven central...'
MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
-s settings.xml \
-Pcentral \
-DstagingRepositoryId="${STAGING_REPOSITORY_ID}" \
nexus-staging:rc-release