-javaagentのようなvmオプションを指定してjettyを開始する方法、またはMAVEN_OPTS変数を介してのみ使用できる方法を教えてください。アスペクトのロード時ウィービングを可能にするために必要です。このプラグインは機能しないようです。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>maven</executable>
<arguments>
<argument>-javaagent:path\to\org\aspectj\aspectjweaver\1.6.10\aspectjweaver-1.6.10.jar</argument>
</arguments>
</configuration>
</plugin>
jetty-pluginで実行できるかもしれませんが、そのタグsystemPropertiesによると
コマンドラインまたはJVMによって設定されたシステムプロパティを上書きしません
どういう意味ですか?