Commit 2c97f41c authored by Josh Steinberg's avatar Josh Steinberg

edit nexus step jenkinsfile

parent 0a9b6676
...@@ -48,7 +48,7 @@ pipeline { ...@@ -48,7 +48,7 @@ pipeline {
artifactExists = fileExists artifactPath; artifactExists = fileExists artifactPath;
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( nexusArtifactUploader{
nexusVersion: NEXUS_VERSION, nexusVersion: NEXUS_VERSION,
protocol: NEXUS_PROTOCOL, protocol: NEXUS_PROTOCOL,
nexusUrl: NEXUS_URL, nexusUrl: NEXUS_URL,
...@@ -66,7 +66,7 @@ pipeline { ...@@ -66,7 +66,7 @@ pipeline {
file: "pom.xml", file: "pom.xml",
type: "pom"] type: "pom"]
] ]
); };
} else { } else {
error "*** File: ${artifactPath}, could not be found"; error "*** File: ${artifactPath}, could not be found";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment