当前位置:  开发笔记 > 编程语言 > 正文

gwt-maven-plugin:如何在pom.xml中为gwt:run目标设置系统属性?

如何解决《gwt-maven-plugin:如何在pom.xml中为gwt:run目标设置系统属性?》经验,为你挑选了1个好方法。



1> Valdis R..:

请参阅gwt-maven-plugin的编译指南.您可以使用该extraJvmArgs元素.

  
    org.codehaus.mojo
    gwt-maven-plugin
    2.2.0
    
      
        
          -Xmx512M -Xss1024k -Dfoo=bar
        
        
          compile
        
      
    
  

编辑:事实证明这不适用于gwt:run goal,但将extraJvmArgs移动到插件(而不是执行)配置中:

  
    org.codehaus.mojo
    gwt-maven-plugin
    2.2.0
    
      -Xmx512M -Xss1024k -Dfoo=bar
    
  

推荐阅读
小白也坚强_177
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有