You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
440 B
11 lines
440 B
#!/bin/sh |
|
|
|
export DEVELOCITY_CACHE_USERNAME=${DEVELOCITY_CACHE_USR} |
|
export DEVELOCITY_CACHE_PASSWORD=${DEVELOCITY_CACHE_PSW} |
|
export JENKINS_USER=${JENKINS_USER_NAME} |
|
|
|
# The environment variable to configure access key is still GRADLE_ENTERPRISE_ACCESS_KEY |
|
export GRADLE_ENTERPRISE_ACCESS_KEY=${DEVELOCITY_ACCESS_KEY} |
|
|
|
MAVEN_OPTS="-Duser.name=${JENKINS_USER} -Duser.home=/tmp/jenkins-home" \ |
|
./mvnw -s settings.xml clean install -Pall-dbs
|
|
|