如何让argLine在maven surefire插件

时间:2016-08-08 20:48:49

标签: java maven netbeans surefire

我在尝试向jvm添加参数时遇到了困难。看起来使用surefire是唯一的方法。我在pom.xml中的当前代码是

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-surefire-plugin</artifactId>
   <version>2.19</version>
   <configuration>
       <argLine>-Xmx512m</argLine>
       <systemPropertyVariables>
          <all.clusters>${all.clusters}</all.clusters>
          <branding.token>${brandingToken}</branding.token>
       </systemPropertyVariables>
   </configuration>
</plugin>

Maven对我来说是新手,所以也许我错过了一些简单的东西。

在Netbeans 8.1环境中运行。

1 个答案:

答案 0 :(得分:0)

事实证明,我需要做的是不要确保使用特殊参数运行,因为这只包括测试。让它工作的诀窍是这个项目是一个使用它的NetBeans应用程序 NBM-行家的插件。

以下博客文章介绍了如何修改参数。 Blogpost