【发布时间】:2017-10-16 09:45:56
【问题描述】:
我们在 java + maven 项目中使用 groovy,在构建过程中遇到以下错误:
INFO] Unable to get Groovy version from GroovySystem, trying InvokerHelper.
[ERROR] Your Groovy version (1.1-rc-1) doesn't support compilation. The minimum version of Groovy required is 1.5.0. Skipping compiling.
我的 pom.xml 有这个依赖:
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.12</version>
<scope>compile</scope>
</dependency>
有什么想法吗?
【问题讨论】:
标签: java maven unit-testing groovy