尝试将gpars withPool 方法导入我的项目。导入在groovyconsole中有效,但在 gradle 中构建时无效。
groovyconsole和gradle都在运行 groovy 版本 2.4.5
有任何想法吗?
Groovy 控制台
import static groovyx.gpars.GParsPool.withPool
withPool(2) { (1..5).collectParallel { println it.toString() } }
输出:
1
3
2
4
5
Result: [null, null, null, null, null]
Gradle 编译Groovy
与上述相同的导入步骤:
import static groovyx.gpars.GParsPool.withPool
梯度输出:
:compileGroovystartup failed:
C:\Programming\Projects\groovy\src\main\groovy\lib.groovy: 18: unable to resolve class groovyx.gpars.GParsPool
@ line 18, column 1.
import static groovyx.gpars.GParsPool.withPool
^
1 error
FAILED