Google app engine 如何为SDK v1.7.5构建GAE应用程序(使用Maven)

Google app engine 如何为SDK v1.7.5构建GAE应用程序(使用Maven),google-app-engine,maven,Google App Engine,Maven,我试图让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

我试图让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>
然后,最终将导致构建失败


如何使用Maven根据版本
1.7.5
构建我的GAE

您可以使用。我们在github上也有。您可以使用。我们在github上也有。

官方appengine maven插件支持1.7.6,如果您愿意,可以使用1.7.5版本,但1.7.6现在是最新版本。

官方appengine maven插件支持1.7.6,如果您愿意,可以使用1.7.5版本,但是1.7.6现在是最新版本。

为什么1.7.5不在最新版本上试用?为什么1.7.5不在最新版本上试用?
[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