我想用Eclipse IDE创建maven managed gwt项目。
我正在使用GWT 2.7。但是当我从文件>创建项目时新> Maven Project 并选择gwt为 Archetype ,请找到下面的图片 -
版本是2.1.0-1,生成的pom.xml是gwt版本2.1。如何更新此 org.codehaus.mojo Archetype ?或者我可以设置使用我的gwt版本生成吗?
编辑:生成的pom.xml如下,但我使用的是gwt 2.7
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<!-- POM file generated with GWT webAppCreator -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.my.test</groupId>
<artifactId>TestingGWT</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>GWT Maven Archetype</name>
<properties>
<!-- Convenience property to set the GWT version -->
<gwtVersion>2.1.0</gwtVersion>
<!-- GWT needs at least java 1.5 -->
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
</properties>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>2.1.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>2.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<!-- Generate compiled stuff in the folder used for developing mode -->
<outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
<plugins>
<!-- GWT Maven Plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.1.0-1</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test</goal>
<goal>i18n</goal>
<goal>generateAsync</goal>
</goals>
</execution>
</executions>
<!-- Plugin configuration. There are many available options, see gwt-maven-plugin
documentation at codehaus.org -->
<configuration>
<runTarget>testingGWT.html</runTarget>
<hostedWebapp>${webappDirectory}</hostedWebapp>
<i18nMessagesBundle>com.my.test.TestingGWT.client.Messages</i18nMessagesBundle>
</configuration>
</plugin>
<!-- Copy static web files before executing gwt:run -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>exploded</goal>
</goals>
</execution>
</executions>
<configuration>
<webappDirectory>${webappDirectory}</webappDirectory>
</configuration>
</plugin>
</plugins>
</build>
</project>
PS :请勿在生成后建议编辑pom.xml文件。
答案 0 :(得分:1)
看起来Eclipse中的原型目录已经过时了。我不知道如何更新它(我甚至不知道Maven是如何在Eclipse之外完成的),但一个简单的解决方法是使用 Add Archetype ... 按钮添加org.codehaus.mojo:gwt-maven-plugin:2.7.0
。
话虽如此,尽管2.7.0原型比2.1.0原型要好得多,但除了小型一次性实验或bug repro案例外,我不建议使用它。
对于您希望在中/长期内维护和增长的任何项目,我强烈建议您为客户端和服务器端代码使用单独的Maven模块。我为这个多模块设置构建了原型:https://github.com/tbroyer/gwt-maven-archetypes;见公告here。另请注意,他们不使用org.codehaus.mojo
插件。