mirror of https://github.com/apache/maven.git
o Removed default values to allow testing of defaults provided by core
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@707966 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ee8eefeca4
commit
19f1dc1148
|
@ -65,14 +65,19 @@ public class AttachMojo
|
|||
private String attachedFile;
|
||||
|
||||
/**
|
||||
* @parameter expression="${artifact.artifactType}" default-value="jar"
|
||||
* The type of the artifact to attach.
|
||||
*
|
||||
* @parameter expression="${artifact.artifactType}"
|
||||
*/
|
||||
private String artifactType = "jar";
|
||||
private String artifactType;
|
||||
|
||||
/**
|
||||
* @parameter expression="${artifact.artifactClassifier}" default-value="it"
|
||||
* The classifier for the attached artifact. If unspecified, the default classifier for the specified artifact type
|
||||
* is used.
|
||||
*
|
||||
* @parameter expression="${artifact.artifactClassifier}"
|
||||
*/
|
||||
private String artifactClassifier = "it";
|
||||
private String artifactClassifier;
|
||||
|
||||
/**
|
||||
* Runs this mojo.
|
||||
|
|
Loading…
Reference in New Issue