我有一个只使用groovy的项目,我正在用gmaven构建,但是希望将它切换到使用groovy eclipse编译器。
所以我按照信息here。这很有效。但是有一个新的3.0版本的maven-compiler-plugin。当我切换到该版本时,它会显示要添加到列表中的源文件夹进行编译,但随后退出并说明所有内容都是最新的。
所以我拿了示例项目(链接页面的底部)并按原样编译...没问题。将这个简单的项目切换到maven-compiler-plugin v3.0 ......它无法以相同的方式构建任何东西。
只是我吗?
答案 0 :(得分:1)
尝试在maven-compiler-plugin的配置部分中将以下内容添加到您的pom中:
<includes>
<include>**/*.groovy</include>
<include>**/*.java</include>
</includes>
<testIncludes>
<testInclude>**/*.groovy</testInclude>
<testInclude>**/*.java</testInclude>
</testIncludes>
这是自3.0以来出现的事情。