Multiple arguments should be specified in a single -Xset option. They must be separated with a comma.

-Xset:KEY=VALUE,KEY2=VALUE2,KEY3=VALUE3

From an aspectj source (version 1.7.2):
1. org.aspectj.ajdt.ajc.BuildArgParser$AjcConfigParser, method parseOption:

} else if (arg.startsWith("-Xset:")) {
	buildConfig.setXconfigurationInfo(arg.substring(6));
}

2. org.aspectj.weaver.World, method performExtraConfiguration - parameters are split by a comma.
3. org.aspectj.weaver.World, method ensureAdvancedConfigurationProcessed - parameters are processed



You can also enable overweaving with a system property "aspectj.overweaving" set to "true" (the other options can not be set this way).

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to