diff --git a/aspectj/plugin.jelly b/aspectj/plugin.jelly index 6fce85cd..1e512b2d 100644 --- a/aspectj/plugin.jelly +++ b/aspectj/plugin.jelly @@ -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}"> diff --git a/aspectj/plugin.properties b/aspectj/plugin.properties index d35649ed..a7c64696 100644 --- a/aspectj/plugin.properties +++ b/aspectj/plugin.properties @@ -45,3 +45,10 @@ maven.aspectj.fork = false # 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 diff --git a/aspectj/project.xml b/aspectj/project.xml index 930649c6..5320f3e5 100644 --- a/aspectj/project.xml +++ b/aspectj/project.xml @@ -23,7 +23,7 @@ 3 maven-aspectj-plugin Maven AspectJ Plugin - 3.0 + 3.1-SNAPSHOT AspectJ Plugin for Maven http://maven.apache.org/reference/plugins/aspectj/ @@ -50,6 +50,11 @@ 3.0 MAVEN_ASPECTJ_3_0 + + 3.1 + 3.1 + HEAD + diff --git a/aspectj/xdocs/changes.xml b/aspectj/xdocs/changes.xml index 65d9056e..0c19dd60 100644 --- a/aspectj/xdocs/changes.xml +++ b/aspectj/xdocs/changes.xml @@ -27,6 +27,12 @@ Carlos Sanchez + + + Added new maven.aspectj.source and + maven.aspectj.time properties. + + Added new maven.aspectj.forkand diff --git a/aspectj/xdocs/properties.xml b/aspectj/xdocs/properties.xml index ba120d73..c633181d 100644 --- a/aspectj/xdocs/properties.xml +++ b/aspectj/xdocs/properties.xml @@ -107,6 +107,24 @@ + + maven.aspectj.source + Yes + + The J2SE source compliance level. Valid values are [1.3 1.4]. + Defaults to 1.3. + + + + + maven.aspectj.time + Yes + + If true, display speed information during weaving. + Defaults to false. + + +