我正在尝试使用 exec-maven-plugin 来实现java
目标。但是,我对这两个选项之间的区别感到困惑:
- 论据
- 命令行参数
如果我尝试使用参数,则对我的 java 类的调用将失败。
我的班级的签名是:
public static void main(String[] args)
{
VeracodeParser parser = new VeracodeParser();
parser.parse(args);
}
我的pom:
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>Zip packaging and deployment</id>
<phase>process-sources</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>com.veracode.apiwrapper.cli.VeracodeCommand</mainClass>
<arguments>
<argument>-action GetAppList</argument>
<argument>-vuser ${veracode.username}</argument>
<argument>-vpassword ${veracode.password}</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
但是,我从 VeracodeCommand 类中收到错误消息,表明我缺少-action
,-vuser
和-vpassword
参数。
但是,当我将其切换为使用单个字符串commandlineArgs
参数时,它按预期工作:
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>Zip packaging and deployment</id>
<phase>process-sources</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>com.veracode.apiwrapper.cli.VeracodeCommand</mainClass>
<commandlineArgs>-action UploadFile -vuser ${veracode.username} -vpassword ${veracode.password} -appid ${veracode.appId} -filepath ${project.build.directory}/dependency/sbip_ear_pres.ear</commandlineArgs>
</configuration>
</execution>
</executions>
</plugin>
问题是这<commandlineArgs>
将变得笨拙长。这就是为什么我更喜欢使用该<arguments>
参数的原因。
谁能向我解释两者之间的区别和/或是否/如何使用该arguments
参数?