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:
Benjamin Bentmann 2008-10-26 10:38:17 +00:00
parent ee8eefeca4
commit 19f1dc1148
1 changed files with 9 additions and 4 deletions

View File

@ -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.