Maven Exec插件Xbootclasspath失败

时间:2018-04-23 13:42:34

标签: java maven exec-maven-plugin

我正在使用带有Xbootclasspath的检测JRE环境来指定JRE使用的库的路径。这是我的pom.xml

                <execution>
                    <id>example</id>
                    <goals>
                        <goal>exec</goal>
                    </goals>
                    <configuration>
                        <executable>/path/to/jre/bin/java</executable>
                        <arguments>
                            <argument>-Xbootclasspath/a:/path/to/lib</argument>
                            <argument>-h</argument>
                        </arguments>
                    </configuration>
                </execution>

无法启动VM

总是失败
[DEBUG] Executing command line: [/path/to/jre/bin/java, -Xbootclasspath/a:/path/to/lib}, -h]
Error occurred during initialization of VM
java/lang/NoClassDefFoundError: edu/columbia/cs/psl/phosphor/struct/TaintedWithObjTag
[ERROR] Command execution failed.

但是,当我从命令行使用它时,它可以成功执行。 mvn exec:exec -Dexec.executable=/path/to/jre/bin/java -Dexec.args="-Xbootclasspath/a:/path/to/lib -h"

1 个答案:

答案 0 :(得分:0)

你的pom中有一个错字,一个额外的&#34;}&#34;。

<arguments>
    <argument>-Xbootclasspath/a:/path/to/lib</argument>
    <argument>-h</argument>
</arguments>