我在 Eclipse 中集成 maven 和 gwt 已经挣扎了几天。我正在网上搜索一些准备导入的项目,但不幸的是一切都崩溃了这么久。
我是 gwt 的新手。我想学它。早些时候,我在 sbt 中使用 maven、spring 和 playframework。
我没有使用过类似 ant 的构建工具。但我喜欢 gwt 和 eclipe 之间的集成(我可以在超级开发模式下单击运行)。
一种想法是我不喜欢在 ant 中,我必须手动下载 jar 并将其放在类路径中。我认为如果maven可以为我做这件事是没有必要的。
我也想使用这个库:gwtbootstrap3 我不能自己处理这个。
你们中的某个人可以为我准备那个我可以导入的eclipse项目吗?
这是我最新的pom.xml
:
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>pl.korbeldaniel.btsp</groupId>
<artifactId>btsp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>btsp</name>
<properties>
<gwt.version>2.7.0</gwt.version>
<gwtBootstrap3.version>0.9.1-SNAPSHOT</gwtBootstrap3.version>
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
</dependency>
</dependencies>
<build>
<finalName>btsp</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
但我不能像原生 gwt 项目一样运行。