- Add dependent jars (not sure they are required)

- Added merge xml file for the plugin test project
- There are no more errors when running plugin:test but I am still unsure it works... :-)


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114505 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol
2003-12-25 20:47:58 +00:00
parent 96d4e1cbc4
commit 46b15dcc69
5 changed files with 29 additions and 9 deletions

View File

@@ -24,7 +24,7 @@
classname="org.codehaus.aspectwerkz.metadata.AttributeC">
<ant:arg file="${maven.aspectwerkz.src.dir}"/>
<ant:arg file="${maven.aspectwerkz.definition.file}"/>
<ant:arg file="${maven.aspectwerkz.build.definition.file}"/>
<j:if test="${context.getVariable('maven.aspectwerkz.definition.merge.file') != null}">
<ant:arg line="-m ${maven.aspectwerkz.definition.merge.file}"/>
</j:if>
@@ -39,16 +39,14 @@
<ant:pathelement location="${plugin.getDependencyPath('trove:trove')}"/>
<ant:pathelement location="${plugin.getDependencyPath('dom4j:dom4j')}"/>
<ant:pathelement location="${plugin.getDependencyPath('jrexx:jrexx')}"/>
<!-- vmassol: I am not sure whether these 2 jars are required or not -->
<ant:pathelement location="${plugin.getDependencyPath('piccolo:piccolo')}"/>
<ant:pathelement location="${plugin.getDependencyPath('commons-jexl:commons-jexl')}"/>
</ant:classpath>
</ant:java>
<!--
Note VMA: I'm not yet sure whether these 2 jars are needed or not:
${lib.dir}/piccolo-1.03.jar
${lib.dir}/commons-jexl-1.0-beta-2.jar
-->
</goal>
</project>

View File

@@ -1,8 +1,9 @@
# Location of AW sources
maven.aspectwerkz.src.dir = ${basedir}/src/main
# Location of AW XML definition file
maven.aspectwerkz.definition.file = ${basedir}/conf/aspectwerkz.xml
# Location of the AW XML definition file that will be created by the
# attribute compilation (when calling <aspectwerkz:attributeC>).
maven.aspectwerkz.build.definition.file = ${maven.build.dir}/aspectwerkz.xml
# (optional). Definition file to be merged with the main definition file.
# Used by the <aspectwerkz:attributeC> goal.

View File

@@ -66,6 +66,16 @@
<artifactId>jrexx</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>piccolo</groupId>
<artifactId>piccolo</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>commons-jexl</groupId>
<artifactId>commons-jexl</artifactId>
<version>1.0-beta-2</version>
</dependency>
</dependencies>
<reports>
<report>maven-changes-plugin</report>

View File

@@ -3,3 +3,4 @@
# -------------------------------------------------------------------
maven.aspectwerkz.uuid = test
maven.aspectwerkz.definition.merge.file = ${basedir}/conf/aspectwerkz.xml

View File

@@ -21,6 +21,16 @@
<code>${basedir}/src/aspectwerkz</code>.
</td>
</tr>
<tr>
<td>maven.aspectwerkz.build.definition.file</td>
<td>Yes</td>
<td>
Location of the AW XML definition file that will be created by the
attribute compilation (when calling the
<code>aspectwerkz:attributeC</code> goal). Defaults to
<code>${maven.build.dir}/aspectwerkz.xml</code>.
</td>
</tr>
<tr>
<td>maven.aspectwerkz.definition.merge.file</td>
<td>Yes</td>