2016-05-25 13 views
0

mvn cleanコンパイルを実行すると、プロジェクトの「target」フォルダの下にファイルが生成されます。これがmvn gcloudを実行すると実行されます。このエラーが発生します。私はのgcloudを変更することができ、それはit.Howを指している理由を知らない私のターゲットfolder.I内部の「HelloSpringWorld-0.1.0」フォルダを持っていないgcloud:run errorアプリケーションが存在しません

[ERROR] Failed to execute goal com.google.appengine:gcloud-maven-plugin:2.0.9.10 
6.v20160420:run (default-cli) on project HelloSpringWorld: The application direc 
tory does not exist : D:\Maven_project\HelloSpringWorld\target/HelloSpringWorld- 
0.1.0 -> [Help 1] 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e swit 
ch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please rea 
d the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionE 
xception 

:「ターゲットを指すように実行します"フォルダの代わりに" target/HelloSpringWorld-0.1.0 "を入力してください。

私のpom.xml、のgcloudプラグインの

<

build> 
     <plugins> 
      <plugin> 
       <groupId>org.springframework.boot</groupId> 
       <artifactId>spring-boot-maven-plugin</artifactId> 
      </plugin> 

      <plugin> 

       <groupId>com.google.appengine</groupId> 
       <artifactId>gcloud-maven-plugin</artifactId> 
       <version>2.0.9.106.v20160420</version> 
       <configuration> 
        <gcloud_directory>C:\Users\RPalliyalil\AppData\Local\Google\Cloud SDK\google-cloud-sdk</gcloud_directory> 
        <verbosity>debug</verbosity> 
        <staging_directory>D:\Maven_project\HelloSpringWorld\target</staging_directory> 
       </configuration> 

      </plugin> 
     </plugins> 
    </build> 
+0

あなたのpom.xmlファイルを投稿してください。 –

答えて

3

あなたはガイドに従っていましたか? https://github.com/GoogleCloudPlatform/gcloud-maven-plugin

ガイドによると、実際にmvn gcloud:runを実行する前にmvn clean installを実行する必要があります。また、WARプロジェクトがあることを確認してください。プロジェクトは<packaging>war</packaging>です。

これを正しく実行すると、packageフェーズのmaven-war-pluginでは、フォルダ/target/${project.build.finalName}が生成されます。あなたの場合は /target/HelloSpringWorld-0.1.0を意味します。

関連する問題