Eclipse mars m2e & groovy eclipse 编译器?:没有源文件夹

Eclipse mars m2e & groovy eclipse compiler?: no source folders

我试图将一个与 eclipse luna 一起工作的 maven 多模块项目导入到 eclipse mars 中。这个多模块的maven项目在eclipse mars中没有源码文件夹,依赖也不存在:

我无法将 src/main/java 文件夹添加为源文件夹:

其他 Maven 多模块项目可以工作。这个项目的不同之处在于它使用 groovy-eclipse-compiler:

<plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.3</version>
        <dependencies>
          <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy-eclipse-compiler</artifactId>
            <version>2.9.2-01</version>
            <scope>compile</scope>
          </dependency>
          <dependency>
            <groupId>org.codehaus.groovy</groupId>
            <artifactId>groovy-eclipse-batch</artifactId>
            <version>2.4.3-01</version>
            <scope>compile</scope>
          </dependency>
        </dependencies>
        <configuration>
          <compilerId>groovy-eclipse-compiler</compilerId>
          <fork>true</fork>
          <verbose>false</verbose>
          <source>1.7</source>
          <target>1.7</target>
          <encoding>UTF-8</encoding>
          <showDeprecation>true</showDeprecation>
          <verbose />
        </configuration>
      </plugin>

为了在 eclipse 中使用正确的 groovy 工具,我从更新站点安装了 groovy-eclipse:

Groovy Eclipse 2.9.2 snapshot builds for Eclipse 4.5 are available, update site http://dist.springsource.org/snapshot/GRECLIPSE/e4.5/

我该怎么做才能让 eclipse mars 正确识别这个 maven 项目?

这似乎是 groovy-eclipse 错误。 我在 github 页面上打开了一个问题: github.com/groovy/groovy-eclipse/issues/130 ,但我猜这个项目已经被孤立了,这真是一种耻辱:( !