将参数传递给maven-exec-plugin的内部命令失败了

时间:2016-09-12 09:03:48

标签: java maven rmic

我正在尝试使用maven-exec-plugin为我使用EJB 2.1创建的旧项目启动ejbdeploy命令

问题是该命令的一个参数是另一个命令(RMIC),它也有我需要使用的参数。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <executions>
        <execution>
            <id>ejb-deploy</id>
            <phase>package</phase>
            <goals>
                <goal>exec</goal>
            </goals>
            <configuration>
                <executable>ejbdeploy</executable>
                    <arguments>
                        <argument>${project.build.directory}\${project.build.finalName}.jar</argument>
                        <argument>${project.build.directory}\working</argument>
                        <argument>${project.build.directory}\${project.build.finalName}-deployed.jar</argument>
                        <argument>-rmic "-d C:\java\classes"</argument>
                        <argument>-cp</argument>
                        <classpath/>
                    </arguments>
            </configuration>
        </execution>
    </executions>
</plugin>

此代码段在mvn clean install

期间生成错误
[INFO] --- exec-maven-plugin:1.5.0:exec (ejb-deploy) @ SIMBOLight ---
Unrecognized option: -rmic -d.
Unrecognized option: C:\java\classes.
Error: Must specify the input JAR/EAR filename, the working directory, and output JAR/EAR filename.
0 Errors, 0 Warnings, 0 Informational Messages

就像我错误地格式化我的参数一样。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

使用exec-maven-plugin传递参数时,您需要确保每个<argument>不包含未转义的空格字符。每个参数必须作为单独的<argument>给出。

在您的情况下,-rmic "-d C:\java\classes"实际上由2个参数组成:第一个是-rmic,第二个是"-d C:\java\classes"(包含转义空格),所以你可以&# 39;将它们传递给一个<argument>

因此,您可以进行以下配置:

<arguments>
  <argument>${project.build.directory}\${project.build.finalName}.jar</argument>
  <argument>${project.build.directory}\working</argument>
  <argument>${project.build.directory}\${project.build.finalName}-deployed.jar</argument>
  <argument>-rmic</argument>
  <argument>"-d C:\java\classes"</argument>
  <argument>-cp</argument>
  <classpath />
</arguments>

使用这些参数配置时,启动的可执行文件的main方法将-rmic作为参数数组中的第3个元素,-d C:\java\classes作为参数数组中的第4个元素