使用Maven'exec:exec'和Arguments

时间:2013-02-21 22:42:21

标签: maven exec-maven-plugin

我有一个项目配置为使用Maven构建和运行。该项目依赖于特定于平台的本机库,我正在使用找到的here策略来管理这些依赖项。

基本上,特定平台的.dll.so文件打包到jar中,并使用标识目标平台的分类器推送到Maven服务器。然后,maven-dependency-plugin解包特定于平台的jar,并将本机库复制到目标文件夹。

通常我会使用mvn exec:java来运行Java程序,但是exec:java在与Maven相同的JVM中运行应用程序,这阻止我修改类路径。由于必须将本机依赖项添加到类路径中,因此我不得不使用mvn exec:exec。这是pom的相关片段:

...
<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.2.1</version>
    <configuration>
        <executable>java</executable>
        <arguments>
            <argument>-Djava.library.path=target/lib</argument>
            <argument>-classpath</argument>
            <classpath />
            <argument>com.example.app.MainClass</argument>
        </arguments>
    </configuration>
</plugin>
...

这适用于应用程序的默认配置,但我希望能够在命令行中指定一些可选参数。理想情况下,我想做这样的事情:

mvn exec:exec -Dexec.args="-a <an argument> -b <another argument>"

不幸的是,指定exec.args变量会覆盖我在pom中的参数(这些参数是设置类路径并运行应用程序所必需的)。有没有解决的办法?在命令行指定一些可选参数而不覆盖我在pom中的内容的最佳方法是什么?

1 个答案:

答案 0 :(得分:44)

我设法使用Maven环境变量为我的问题找到了一个相当优雅的解决方案。

默认值在pom中定义为属性,并作为参数添加到exec插件中:

...
<properties>
    <argumentA>defaultA</argumentA>
    <argumentB>defaultB</argumentB>
</properties>
...
<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.2.1</version>
    <configuration>
        <executable>java</executable>
        <arguments>
            <argument>-Djava.library.path=${project.build.directory}/lib</argument>
            <argument>-classpath</argument>
            <classpath />
            <argument>com.example.app.MainClass</argument>
            <argument>-a</argument>
            <argument>${argumentA}</argument>
            <argument>-b</argument>
            <argument>${argumentB}</argument>
        </arguments>
    </configuration>
</plugin>
...

现在我可以像以前一样使用默认参数运行:

mvn exec:exec

我可以使用以下命令轻松覆盖命令行中每个参数的默认值:

mvn exec:exec -DargumentA=alternateA -DargumentB=alternateB