0

我正在尝试使 GAE 1.7.5 与 Maven 一起工作:

<properties>
    <gae.version>1.7.5</gae.version>
    <gae-runtime.version>1.7.5.1</gae-runtime.version>
    <maven.gae.plugin.version>0.9.6</maven.gae.plugin.version>
</properties>

    <plugin>
      <groupId>net.kindleit</groupId>
      <artifactId>maven-gae-plugin</artifactId>
      <version>${maven.gae.plugin.version}</version>
      <configuration>
            <unpackVersion>${gae.version}</unpackVersion>
            <serverId>appengine.google.com</serverId>
            <appDir>${webappDirectory}</appDir>
        </configuration>
        <dependencies>
            <dependency>
                <groupId>net.kindleit</groupId>
                <artifactId>gae-runtime</artifactId>
                <version>${gae-runtime.version}</version>
                <type>pom</type>
            </dependency>
        </dependencies>
    </plugin>

但是有这个问题:

[WARNING] The POM for net.kindleit:maven-gae-plugin:jar:0.9.6 is missing, no dependency information available
[WARNING] Failed to retrieve plugin descriptor for net.kindleit:maven-gae-plugin:0.9.6: Plugin net.kindleit:maven-gae-plugin:0.9.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for net.kindleit:maven-gae-plugin:jar:0.9.6
[WARNING] The POM for org.eclipse.m2e:lifecycle-mapping:jar:1.0.0 is invalid, transitive dependencies (if any) will not be available, enable debug logging for more details

然后最终,将以BUILD FAILURE告终。

如何1.7.5使用 Maven 针对版本构建我的 GAE?

4

2 回答 2

3

您可以使用App Engine Maven 插件。我们在 github 上也有一个留言簿示例应用程序。

于 2013-03-26T15:15:19.363 回答
0

官方的 appengine-maven-plugin 支持 1.7.6,如果需要,可以使用 1.7.5 版本,但现在是 1.7.6。

于 2013-03-26T17:43:51.877 回答