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

edit nexus step jenkinsfile

parent 0a9b6676
......@@ -48,7 +48,7 @@ pipeline {
artifactExists = fileExists artifactPath;
if(artifactExists) {
echo "*** File: ${artifactPath}, group: ${pom.groupId}, packaging: ${pom.packaging}, version ${pom.version}";
nexusArtifactUploader(
nexusArtifactUploader{
nexusVersion: NEXUS_VERSION,
protocol: NEXUS_PROTOCOL,
nexusUrl: NEXUS_URL,
......@@ -66,7 +66,7 @@ pipeline {
file: "pom.xml",
type: "pom"]
]
);
};
} else {
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