mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-26 08:55:49 +00:00
variables
This commit is contained in:
parent
efc05eea18
commit
d1e8e86ac8
1 changed files with 6 additions and 6 deletions
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
|
@ -36,14 +36,14 @@ pipeline {
|
||||||
if(artifactExists) {
|
if(artifactExists) {
|
||||||
echo "*** File: ${artifactPath}, group: ${pom.groupId}, packaging: ${pom.packaging}, version ${pom.version}";
|
echo "*** File: ${artifactPath}, group: ${pom.groupId}, packaging: ${pom.packaging}, version ${pom.version}";
|
||||||
|
|
||||||
nexusArtifactUploader(
|
def nexusArtifactUploader(
|
||||||
nexusVersion: NEXUS_VERSION,
|
nexusVersion: ${NEXUS_VERSION},
|
||||||
protocol: NEXUS_PROTOCOL,
|
protocol: ${NEXUS_PROTOCOL},
|
||||||
nexusUrl: NEXUS_URL,
|
nexusUrl: ${NEXUS_URL},
|
||||||
groupId: pom.groupId,
|
groupId: pom.groupId,
|
||||||
version: pom.version,
|
version: pom.version,
|
||||||
repository: NEXUS_REPOSITORY,
|
repository: ${NEXUS_REPOSITORY},
|
||||||
credentialsId: NEXUS_CREDENTIAL_ID,
|
credentialsId: ${NEXUS_CREDENTIAL_ID},
|
||||||
artifacts: [
|
artifacts: [
|
||||||
[artifactId: pom.artifactId,
|
[artifactId: pom.artifactId,
|
||||||
classifier: '',
|
classifier: '',
|
||||||
|
|
Loading…
Reference in a new issue