Monday, May 19, 2014

Overriding Gradle's JavaExec task from project's depends.gradle file

  for example you have JavaExec task configured elsewhere as Gradle's plugin 
 and in current project you want to add/override jvmArgs for that task   

 solution:    
myTask {    
    jvmArgs "-Xmx256m"  
}    

No comments:

Post a Comment