Maven exec:java -Xverify = none,profiler

时间:2017-07-07 14:41:59

标签: java maven pom.xml profiler

我似乎无法让-Xverify:nonemvn exec:java生效。

这是我在pom.xml中尝试的内容:

<build>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>exec-maven-plugin</artifactId>
                    <version>1.2.1</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>java</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <mainClass>my.cool.Main</mainClass>
                        <commandlineArgs>-keep-running</commandlineArgs>
                        <arguments>
                            <argument>-Xverify:none</argument>
                        </arguments>                        
                    </configuration>
                </plugin>
            </plugins>
        </build>

但它无效(我无法正确附加一个分析器,它一直给我Profiler Agent Warning: Retransform failed with status 62

如何传递-X以使其正常工作。

0 个答案:

没有答案