From 3ca4145fae7a48d98c1740f4cb8e6de4bbcdc58d Mon Sep 17 00:00:00 2001 From: vmassol Date: Mon, 10 May 2004 18:23:05 +0000 Subject: [PATCH] Applied MPASPECTJ-9 git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115216 13f79535-47bb-0310-9956-ffa450edef68 --- aspectj/plugin.jelly | 6 ++++-- aspectj/plugin.properties | 11 +++++++++++ aspectj/xdocs/changes.xml | 4 ++++ aspectj/xdocs/properties.xml | 23 +++++++++++++++++++++++ 4 files changed, 42 insertions(+), 2 deletions(-) diff --git a/aspectj/plugin.jelly b/aspectj/plugin.jelly index 704371e8..6fce85cd 100644 --- a/aspectj/plugin.jelly +++ b/aspectj/plugin.jelly @@ -95,8 +95,10 @@ - + + Added new maven.aspectj.fork and + maven.aspectj.maxmem properties. + Another almost complete rewrite of the plugin. The plugin is now using AspectJ 1.2rc1 and allows weaving at class level (instead of diff --git a/aspectj/xdocs/properties.xml b/aspectj/xdocs/properties.xml index bb807aea..ba120d73 100644 --- a/aspectj/xdocs/properties.xml +++ b/aspectj/xdocs/properties.xml @@ -84,6 +84,29 @@ + + maven.aspectj.fork + Yes + + Run process in another VM. This gets the forking classpath either explicitly + from a forkclasspath entry or by searching the task or system/Ant classpath + for the first readable file with a name of the form aspectj{-}tools{.*}.jar. + When forking you can specify the amount of memory used with maxmem. Fork cannot + be used in incremental mode, unless using a tag file.
+ Default false + + + + + maven.aspectj.maxmem + Yes + + 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". + Default 128m + + +