From f58ba047a3b7e6749cd5ed561a6b6a8ad7d7cbf2 Mon Sep 17 00:00:00 2001 From: Hammy Date: Sat, 5 Jun 2021 16:33:45 +0100 Subject: [PATCH] Update Jenkinsfile Make sure that the main jar does not have an additional classifier to mention within pom.xml's --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2683625..796e2c1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -58,7 +58,7 @@ pipeline { repository: NEXUS_REPOSITORY, credentialsId: NEXUS_CREDENTIAL_ID, artifacts: [ - [artifactId: pom.artifactId, classifier: 'normal', file: jarArtifact, type: pom.packaging], + [artifactId: pom.artifactId, classifier: '', file: jarArtifact, type: pom.packaging], [artifactId: pom.artifactId, classifier: 'javadocs', file: javadocsArtifact, type: pom.packaging], [artifactId: pom.artifactId, classifier: 'sources', file: jarWithSourcesArtifact, type: pom.packaging], [artifactId: pom.artifactId, classifier: '', file: "pom.xml", type: "pom"]