Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHoban committed Jul 21, 2019
1 parent 6c6c648 commit 4c09123
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jenkins/jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ try {
// Assign to a boolean response verifying If the artifact name exists
artifactExists = fileExists artifactPath;
if(artifactExists) {
pomPath = it.path.replace("target/{$it.name}", "pom.xml")
pomPath = it.path.replace("target/${it.name}", "pom.xml")
//propertiesPath = it.path.replace("")
artifactPom = readMavenPom file: pomPath;
echo "*** File: ${artifactPath}, group: ${artifactPom.groupId}, packaging: ${artifactPom.packaging}, version ${artifactPom.version}";
nexusArtifactUploader(
Expand Down

0 comments on commit 4c09123

Please sign in to comment.