vmassol 2004/06/03 04:49:46
Modified: aspectj/xdocs changes.xml properties.xml
aspectj project.xml plugin.jelly plugin.properties
Log:
Added new <code>maven.aspectj.source</code> and <code>maven.aspectj.time</code>
properties.
Revision Changes Path
1.13 +6 -0 maven-plugins/aspectj/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/maven-plugins/aspectj/xdocs/changes.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- changes.xml 16 May 2004 02:04:10 -0000 1.12
+++ changes.xml 3 Jun 2004 11:49:45 -0000 1.13
@@ -27,6 +27,12 @@
<author email="[EMAIL PROTECTED]">Carlos Sanchez</author>
</properties>
<body>
+ <release version="3.1-SNAPSHOT" date="in CVS">
+ <action dev="vmassol" type="add" due-to="Jules Gosnell">
+ Added new <code>maven.aspectj.source</code> and
+ <code>maven.aspectj.time</code> properties.
+ </action>
+ </release>
<release version="3.0" date="2004-05-15">
<action dev="vmassol" type="add" issue="MPASPECTJ-9" due-to="Carlos Sanchez"
due-to-email="[EMAIL PROTECTED]">Added new
<code>maven.aspectj.fork</code>and
1.8 +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.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- properties.xml 10 May 2004 18:23:05 -0000 1.7
+++ properties.xml 3 Jun 2004 11:49:45 -0000 1.8
@@ -107,6 +107,24 @@
</td>
</tr>
+ <tr>
+ <td>maven.aspectj.source</td>
+ <td>Yes</td>
+ <td>
+ The J2SE source compliance level. Valid values are [1.3 1.4].
+ Defaults to <code>1.3</code>.
+ </td>
+ </tr>
+
+ <tr>
+ <td>maven.aspectj.time</td>
+ <td>Yes</td>
+ <td>
+ If true, display speed information during weaving.
+ Defaults to <code>false</code>.
+ </td>
+ </tr>
+
</table>
</section>
1.35 +6 -1 maven-plugins/aspectj/project.xml
Index: project.xml
===================================================================
RCS file: /home/cvs/maven-plugins/aspectj/project.xml,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- project.xml 16 May 2004 02:04:10 -0000 1.34
+++ project.xml 3 Jun 2004 11:49:45 -0000 1.35
@@ -23,7 +23,7 @@
<pomVersion>3</pomVersion>
<id>maven-aspectj-plugin</id>
<name>Maven AspectJ Plugin</name>
- <currentVersion>3.0</currentVersion>
+ <currentVersion>3.1-SNAPSHOT</currentVersion>
<description/>
<shortDescription>AspectJ Plugin for Maven</shortDescription>
<url>http://maven.apache.org/reference/plugins/aspectj/</url>
@@ -49,6 +49,11 @@
<id>3.0</id>
<name>3.0</name>
<tag>MAVEN_ASPECTJ_3_0</tag>
+ </version>
+ <version>
+ <id>3.1</id>
+ <name>3.1</name>
+ <tag>HEAD</tag>
</version>
</versions>
<developers>
1.12 +3 -1 maven-plugins/aspectj/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven-plugins/aspectj/plugin.jelly,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- plugin.jelly 10 May 2004 18:23:05 -0000 1.11
+++ plugin.jelly 3 Jun 2004 11:49:45 -0000 1.12
@@ -103,7 +103,9 @@
sourceRootCopyFilter="${maven.aspectj.sourceRootCopyFilter}"
debug="${maven.aspectj.debug}"
emacssym="${maven.aspectj.emacssym}"
- verbose="${maven.aspectj.verbose}">
+ verbose="${maven.aspectj.verbose}"
+ source="${maven.aspectj.source}"
+ time="${maven.aspectj.time}">
<ant:sourceroots>
<ant:path refid="maven.compile.src.set"/>
1.6 +7 -0 maven-plugins/aspectj/plugin.properties
Index: plugin.properties
===================================================================
RCS file: /home/cvs/maven-plugins/aspectj/plugin.properties,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- plugin.properties 10 May 2004 18:23:05 -0000 1.5
+++ plugin.properties 3 Jun 2004 11:49:45 -0000 1.6
@@ -45,3 +45,10 @@
# The maximum memory to use for the new VM when fork is true. Values should
# have the same form as accepted by the VM, e.g., "128m".
maven.aspectj.maxmem = 128m
+
+# The J2SE source compliance level. Valid values are [1.3 1.4].
+# Defaults to 1.3.
+maven.aspectj.source = 1.3
+
+# If true, display speed information during weaving.
+maven.aspectj.time = false
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]