Grails 3.x - 分叉执行

时间:2017-11-23 08:39:03

标签: grails gradle grails3

我正在将项目从grails 2.4迁移到grails 3.3

在Grails 2.4中,我们有以下分叉执行配置:

grails.project.fork = [
    // configure settings for compilation JVM, note that if you alter the Groovy version forked compilation is required
    //  compile: [maxMemory: 256, minMemory: 64, debug: false, maxPerm: 256, daemon:true],

    // configure settings for the test-app JVM, uses the daemon by default
   test: [maxMemory: 4096, minMemory: 1024, debug: false, maxPerm: 16384, daemon:true],
    // configure settings for the run-app JVM
    run: [maxMemory: 16384, minMemory: 1024, debug: false, maxPerm: 16384, forkReserve:false],
    // configure settings for the run-war JVM
    war: [maxMemory: 16384, minMemory: 1024, debug: false, maxPerm: 16384, forkReserve:false],
    // configure settings for the Console UI JVM
    console: [maxMemory: 16384, minMemory: 1024, debug: false, maxPerm: 16384]
]

如grails 2.3 documentation中所述:

5.2分叉执行

  

分叉执行自Grails 2.3以来,run-app,run-war,test-app和   现在,控制台命令在分叉的JVM中执行,以便隔离   来自运行时类路径的构建类路径。

     

通过分配执行分叉执行   grails-app / conf / BuildConfig.groovy文件。

但是,我找不到任何关于grails 3.x

中分叉执行配置的文档

在哪里可以找到grails 3.x中分叉执行的文档?

我应该将配置移到哪里?

0 个答案:

没有答案