felipeal 2004/09/05 13:00:25 Modified: aspectj plugin.jelly plugin.properties project.xml aspectj/xdocs changes.xml properties.xml Log: fix for MPASPECTJ-13: new properties maven.aspectj.noweave and maven.aspectj.lint Revision Changes Path 1.21 +2 -0 maven-plugins/aspectj/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /home/cvs/maven-plugins/aspectj/plugin.jelly,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- plugin.jelly 27 Aug 2004 19:11:58 -0000 1.20 +++ plugin.jelly 5 Sep 2004 20:00:25 -0000 1.21 @@ -51,6 +51,8 @@ <ant:iajc fork="${maven.aspectj.fork}" incremental="${maven.aspectj.incremental}" + XnoWeave="${maven.aspectj.noweave}" + Xlint="${maven.aspectj.lint}" destDir="${destDir}" sourceRootCopyFilter="${maven.aspectj.sourceRootCopyFilter}" debug="${maven.aspectj.debug}" 1.7 +9 -0 maven-plugins/aspectj/plugin.properties Index: plugin.properties =================================================================== RCS file: /home/cvs/maven-plugins/aspectj/plugin.properties,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- plugin.properties 3 Jun 2004 11:49:45 -0000 1.6 +++ plugin.properties 5 Sep 2004 20:00:25 -0000 1.7 @@ -52,3 +52,12 @@ # If true, display speed information during weaving. maven.aspectj.time = false + + +# If true, produce binaries that can only be used as input for the -injars or -inpath option +maven.aspectj.noweave=false + +# Level of language usage messages. Possible values are error, warning and ignore +maven.aspectj.lint=warning + + 1.45 +10 -0 maven-plugins/aspectj/project.xml Index: project.xml =================================================================== RCS file: /home/cvs/maven-plugins/aspectj/project.xml,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- project.xml 27 Aug 2004 19:11:58 -0000 1.44 +++ project.xml 5 Sep 2004 20:00:25 -0000 1.45 @@ -95,6 +95,16 @@ </roles> <timezone>+1</timezone> </developer> + <developer> + <name>Felipe Leme</name> + <id>felipeal</id> + <email>[EMAIL PROTECTED]</email> + <organization>Falcon Informatica</organization> + <roles> + <role>Jelly Developer</role> + </roles> + <timezone>-3</timezone> + </developer> </developers> <contributors> <contributor> 1.25 +4 -1 maven-plugins/aspectj/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /home/cvs/maven-plugins/aspectj/xdocs/changes.xml,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- changes.xml 27 Aug 2004 19:11:58 -0000 1.24 +++ changes.xml 5 Sep 2004 20:00:25 -0000 1.25 @@ -28,8 +28,11 @@ </properties> <body> <release version="3.2-SNAPSHOT" date="in CVS"> + <action dev="felipeal" type="add" issue="MPASPECTJ-13">Added + <code>maven.aspectj.noweave</code> and + <code>maven.aspectj.lint</code>properties.</action> <action dev="carlos" type="fix">Added - <code>maven.aspectj.source</code>and + <code>maven.aspectj.source</code> and <code>maven.aspectj.time</code>properties that where incorrectly removed.</action> </release> <release version="3.1.1" date="2004-07-09"> 1.10 +18 -0 maven-plugins/aspectj/xdocs/properties.xml Index: properties.xml =================================================================== RCS file: /home/cvs/maven-plugins/aspectj/xdocs/properties.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- properties.xml 29 Jun 2004 08:54:42 -0000 1.9 +++ properties.xml 5 Sep 2004 20:00:25 -0000 1.10 @@ -125,6 +125,24 @@ </td> </tr> + <tr> + <td>maven.aspectj.noweave</td> + <td>Yes</td> + <td> + If true, produce binaries that can only be used as input for the <code>-injars</code> or <code>-inpath</code> option. + Defaults to <code>false</code>. + </td> + </tr> + + <tr> + <td>maven.aspectj.lint</td> + <td>Yes</td> + <td> + Level of language usage messages. Possible values are <code>error</code>, <code>warning</code> and <code>ignore</code>. + Defaults to <code>warning</code>. + </td> + </tr> + </table> </section>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]