Skip to content

Commit

Permalink
Release Jenkinsfile: Create local mvn repo inside WORKSPACE_TMP inste…
Browse files Browse the repository at this point in the history
…ad of next to it
  • Loading branch information
yrodiere committed Apr 6, 2022
1 parent cd1dee0 commit 5d65683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jenkins/release.groovy
Expand Up @@ -65,7 +65,7 @@ pipeline {
echo "Performing full release for version ${releaseVersion.toString()}"

withMaven(mavenSettingsConfig: params.RELEASE_DRY_RUN ? null : 'ci-hibernate.deploy.settings.maven',
mavenLocalRepo: env.WORKSPACE_TMP + '.m2repository') {
mavenLocalRepo: env.WORKSPACE_TMP + '/.m2repository') {
configFileProvider([configFile(fileId: 'release.config.ssh', targetLocation: env.HOME + '/.ssh/config')]) {
withCredentials([file(credentialsId: 'release.gpg.private-key', variable: 'RELEASE_GPG_PRIVATE_KEY_PATH'),
string(credentialsId: 'release.gpg.passphrase', variable: 'RELEASE_GPG_PASSPHRASE')]) {
Expand Down

0 comments on commit 5d65683

Please sign in to comment.