我正在尝试生成出现在我的 Jenkins Maven 工作Advanced...
中的内容
Incremental build - only build changed modules
这是一个直接位于<maven2-moduleset>
.
我在 API 中没有找到它,所以我想我会使用configure
,但我无法弄清楚。据我了解,这应该有效:
mavenJob('foo') {
rootPOM('foo/pom.xml')
goals('clean package')
configure { node ->
node {
incrementalBuild('true')
}
}
}
但是,我得到一个例外:
groovy.lang.MissingMethodException: No signature of method: groovy.util.Node.call() is applicable for argument types: (Generator$_run_closure1_closure14_closure16) values: [Generator$_run_closure1_closure14_closure16@1f7d8eff]
Possible solutions: wait(), name(), value(), any(), wait(long), any(groovy.lang.Closure)
我究竟做错了什么?