IntelliJ没有为groovy项目下载Maven源代码

时间:2016-12-12 17:36:12

标签: maven intellij-idea groovy

我发现“下载源”对我们所有的Java项目都很有用。但是我没有让它为Groovy项目工作 - 它没有错误,我们只是没有在IntelliJ中显示正确的源。

IntelliJ或Maven中是否存在可以实现此目的的配置?

谢谢。

1 个答案:

答案 0 :(得分:0)

有人在这里弄清楚了。我把它添加到了pom(groovy source,groovy test source),现在一切正常。

     <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <executions>
           <execution>
              <id>add-groovy-source</id>
              <!-- before package phase -->
              <phase>test</phase>
              <goals>
                 <goal>add-source</goal>
              </goals>
              <configuration>
                 <sources>
                    <source>${basedir}/src/main/groovy</source>
                 </sources>
              </configuration>
           </execution>
           <execution>
              <id>add-groovy-test-source</id>
              <!-- before package phase -->
              <phase>test</phase>
              <goals>
                 <goal>add-test-source</goal>
              </goals>
              <configuration>
                 <sources>
                    <source>${basedir}/src/test/groovy</source>
                 </sources>
              </configuration>
           </execution>
        </executions>
     </plugin>