Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Return param value to pipeline
  • Loading branch information
bonnetb committed Dec 7, 2017
1 parent cc341d1 commit ac3b6f6
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -78,7 +78,10 @@ public MavenMetadataParameterValue(String name, String description, String group
this.classifier = classifier;
this.artifactUrl = artifactUrl;
}

@Override
public Object getValue() {
return getVersion();
}
@Override
public void buildEnvVars(AbstractBuild<?, ?> build, EnvVars env) {
env.put(getName() + GROUP_ID_SUFFIX, getGroupId());
Expand Down

0 comments on commit ac3b6f6

Please sign in to comment.