gpt4 book ai didi

maven - Groovy 文件无法在 Intellij IDEA 中编译

转载 作者:行者123 更新时间:2023-12-04 05:41:51 25 4
gpt4 key购买 nike

我有 maven 项目机智 java 和 groovy 测试。
在命令行 Maven 编译中,所有测试都在运行,但在我的 IDEA 项目(通过“AutoImport Maven 项目”自动创建)中,IDEA 将 groovy 文件复制到/target/test-classes 而不编译它们。

我的 gmaven 插件看起来像

    <plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<goals>
<goal>generateStubs</goal>
<goal>compile</goal>
<goal>generateTestStubs</goal>
<goal>testCompile</goal>
</goals>
<configuration>
<providerSelection>1.7</providerSelection>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy.version}</version>
</dependency>
</dependencies>
</plugin>

最佳答案

我遇到了同样的问题,不得不在 Idea 中更改以下设置:
设置->编译器->资源模式

它是 !?*.java

我把它改成
!?.java;!?.form;!?.class;!?.groovy;!?.scala;!?.flex;!?.kt;!?.clj

最好能够将它指定到 pom 文件中,但还没有找到方法。

关于maven - Groovy 文件无法在 Intellij IDEA 中编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8310563/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com