2

我正在尝试运行使用 gwt-dev 的项目。 当我在终端中创建依赖项时,说明位于:httpmvn install:install-file -DgroupId=com.google.gwt -DartifactId=gwt-dev -Dversion=2.5.0 -Dpackaging=jar -Dfile='/home/mikhail/Загрузки/libraries/gwt-2.5.0/gwt-dev.jar' ://neiliscoding.blogspot.ru/2012/05/how-to-setup-examples-for-use-in-gxt-3.html?showComment=1362999279386: 并将依赖项添加到 pom.xml:

 <dependency>
      <groupId>com.google.gwt</groupId>
      <artifactId>gwt-dev</artifactId>
      <version>2.5.0</version>
  </dependency>

行家 说:

    [WARNING] You should not declare gwt-dev as a project dependency. This may introduce complex dependency conflicts
Downloading: http://repo1.maven.org/maven2/com/google/gwt/gwt-dev/2.5.0/gwt-dev-2.5.0-linux-libs.zip
[INFO] Unable to find resource 'com.google.gwt:gwt-dev:zip:linux-libs:2.5.0' in repository central (http://repo1.maven.org/maven2)

否则,如果我将其删除,maven 会说:

[INFO] using GWT jars from project dependencies : 2.5.0
Downloading: http://repo1.maven.org/maven2/com/google/gwt/gwt-dev/2.5.0/gwt-dev-2.5.0-linux-libs.zip
[INFO] Unable to find resource 'com.google.gwt:gwt-dev:zip:linux-libs:2.5.0' in repository central (http://repo1.maven.org/maven2)
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR

所以我在这两种情况下都有构建错误。如何处理这种情况?请帮帮我。

我还没有解决这个问题,但我刚刚发现我使用了 1.2 版本的 maven 插件。我不确定这是主要问题,但无论如何我想处理它。所以,我已经根据你的第一个链接添加了这个插件,maven 会丢弃构建错误:`

[INFO] Scanning for projects...
[INFO] artifact org.apache.maven.plugins:maven-archetype-plugin: checking for updates from central
[INFO] artifact org.apache.maven.plugins:maven-archetype-plugin: checking for updates from central
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Default Project
[INFO]    task-segment: [org.apache.maven.plugins:maven-archetype-plugin:RELEASE:generate] (aggregator-style)
[INFO] ------------------------------------------------------------------------
[INFO] Preparing archetype:generate
[INFO] No goals needed for project - skipping
[INFO] [archetype:generate {execution: default-cli}]
[INFO] Generating project in Batch mode
[INFO] Archetype repository missing. Using the one from [org.codehaus.mojo:gwt-maven-plugin:2.5.1-rc1] found in catalog remote
[WARNING] Property module is missing. Add -Dmodule=someValue
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Archetype org.codehaus.mojo:gwt-maven-plugin:2.5.1-rc1 is not configured
    Property module is missing.
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4 seconds
[INFO] Finished at: Tue Mar 12 15:18:50 MSK 2013
[INFO] Final Memory: 27M/428M

` 顺便说一下,我使用 intellij IDEA

4

1 回答 1

6

GWT 很久以前就停止为 windows、linux 和 mac 维护单独的平台相关库了。GWT 1.7 是此类平台相关库中的最后一个。所以"linux-libs"你的错误没有意义。我猜你正在使用一个非常旧的 gwt-maven-plugin 。

  1. 移动到最新的 gwt-maven-plugin
  2. 用于<scope>provided</scope>gwt-dev 依赖以避免它被推入 WEB-INF/lib (无害但多余)
  3. 使用全局/中央存储库,而不是在本地安装用户存储库。
  4. 您还可以在此处开始使用 GWT 示例进行 maven 项目。

注意 - 您的查询可能与NetBeans + GWT 2.2.0 + Maven 编译问题重复/相似

编辑新的 GWT 版本

GWT 2.5.1已经发布,还要注意gwt-maven-plugin2.5.0(比 GWT 落后 1 步 :)

于 2013-03-11T14:14:32.070 回答