0

私はGAE1.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

その後、最終的に、ビルドの失敗に終わります。

1.7.5Mavenを使用したバージョンに対してGAEを構築するにはどうすればよいですか?

4

2 に答える 2

3

AppEngineMavenプラグインを使用できます。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 に答える