Commit 7b65c151 authored by Serdar TURKEL's avatar Serdar TURKEL

fixing2

parent edec3d4d
......@@ -45,13 +45,13 @@ pipeline {
if(artifactExists) {
echo "*** File: ${artifactPath}, group: ${pom.groupId}, packaging: ${pom.packaging}, version ${pom.version}";
nexusArtifactUploader(
nexusVersion: NEXUS_VERSION,
protocol: NEXUS_PROTOCOL,
nexusUrl: NEXUS_URL,
nexusVersion: env.NEXUS_VERSION,
protocol: env.NEXUS_PROTOCOL,
nexusUrl: env.NEXUS_URL,
groupId: pom.groupId,
version: pom.version,
repository: NEXUS_REPOSITORY,
credentialsId: NEXUS_CREDENTIAL_ID,
repository: env.NEXUS_REPOSITORY,
credentialsId: env.NEXUS_CREDENTIAL_ID,
artifacts: [
// Artifact generated such as .jar, .ear and .war files.
[artifactId: pom.artifactId,classifier: '',file: artifactPath,type: pom.packaging],
......
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