MNG-736: Move ear source directory to comply with other plugin's structure. Applied on Stephane's behalf.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@232787 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Vincent Massol 2005-08-15 10:37:30 +00:00
parent 1fe703883e
commit a10ae839cb
1 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ public class EarMojo
/** /**
* Single directory for extra files to include in the EAR. * Single directory for extra files to include in the EAR.
* *
* @parameter expression="${basedir}/src/application" * @parameter expression="${basedir}/src/main/application"
* @required * @required
*/ */
private String earSourceDirectory; private String earSourceDirectory;
@ -51,7 +51,7 @@ public class EarMojo
/** /**
* The location of the manifest file to be used within the ear file. * The location of the manifest file to be used within the ear file.
* *
* @parameter expression="${basedir}/src/application/META-INF/MANIFEST.MF" * @parameter expression="${basedir}/src/main/application/META-INF/MANIFEST.MF"
* @TODO handle this field * @TODO handle this field
*/ */
private String manifestLocation; private String manifestLocation;
@ -59,7 +59,7 @@ public class EarMojo
/** /**
* The location of the application.xml file to be used within the ear file. * The location of the application.xml file to be used within the ear file.
* *
* @parameter expression="${basedir}/src/application/META-INF/application.xml" * @parameter expression="${basedir}/src/main/application/META-INF/application.xml"
*/ */
private String applicationXmlLocation; private String applicationXmlLocation;