我正在尝试使用 gwt-maven-plugin 来编译我的项目。我的 spring 工具套件 eclipse 4.2 中安装了 Maven 3.0.3。
但是,该插件抱怨说它想使用 maven 2.1。我相信使用 maven 3.x 应该没有问题,对吧?
[artifact:mvn] [INFO] 解析 'org.codehaus.mojo:gwt-maven-plugin' 的版本时出错:插件需要 Maven 版本 2.1
我的插件定义:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.4.0</version>
<executions>
<execution>
<configuration>
<module>ally.mc.beal</module>
<gen>gwt-generated</gen>
</configuration>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
我用来触发 gwt 编译的 ant 目标:
<project name="AllyMcBeal"
xmlns:artifact="antlib:org.apache.maven.artifact.ant">
<path id="maven-ant-tasks.classpath" path="maven/maven-ant-tasks-2.1.3.jar" />
...
<target name="gwt.compile">
<artifact:mvn>
<arg value="gwt:compile" />
</artifact:mvn>
</target>
...
</project>
- 我必须安装maven 2.1吗?
- 或者,有没有办法强制它使用 maven 3.x?
- 或者,我是否在配置中遗漏了一条信息?