5

何が起こったのかわかりませんが、pom に変更を加えておらず、クリーン インストールのみを行っていますが、アプリを実行するとmvn gae:run次のエラーが表示されます。

[ERROR] Failed to execute goal net.kindleit:maven-gae-plugin:0.9.4:run (default-cli) on project geoip-service: Execution default-cli of goal net.kindleit:maven-gae-plugin:0.9.4:run failed: Plugin net.kindleit:maven-gae-plugin:0.9.4 or one of its dependencies could not be resolved: Failed to collect dependencies for net.kindleit:maven-gae-plugin:jar:0.9.4 (): Failed to read artifact descriptor for net.kindleit:gae-runtime:pom:1.7.5: Could not find artifact net.kindleit:maven-gae-parent:pom:0.9.6-SNAPSHOT in genius (our_own_repo_here)

SDK の 1.7.2 バージョンを使用しているため、1.7.5 がどこから来たのかわかりません。

4

2 に答える 2

6

とりあえず、この醜いハックを使用できます

<properties>
    <gae.version>1.7.5</gae.version>
    <gae-runtime.version>1.7.5.1</gae-runtime.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>
于 2013-02-27T22:39:33.123 に答える
1

問題が何であったかはまだわかりません。つまり、バージョン 1.7.5 の gae-runtime を引っ張っていたのは誰かですが、これは私にとってうまくいった回避策です。profile/build/plugins/plugin などの maven-gae-plugin の下に以下を追加します。

<dependencies>
    <dependency>
        <groupId>net.kindleit</groupId>
        <artifactId>gae-runtime</artifactId>
        <version>1.7.2</version>
        <type>pom</type>
    </dependency>
</dependencies>
于 2013-02-26T21:13:19.637 に答える