質問編集履歴

1

エラーメッセージの内容を詳細に分かるよう記述

2021/08/05 02:02

投稿

Kawboy442
Kawboy442

スコア14

test CHANGED
File without changes
test CHANGED
@@ -64,33 +64,33 @@
64
64
 
65
65
 
66
66
 
67
- このうち、`Deploy for Heroku` のステップにおいて、GitHub Actionsにて実行すると、下記のような `LifecycleExecutionException` というエラーが発生してしまいます。
68
-
69
-
70
-
71
- ```ErrorMessage
72
-
73
- Error: Failed to execute goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy-war (default-cli) on project food_share_web: Execution default-cli of goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy-war failed: Index 0 out of bounds for length 0 -> [Help 1]
74
-
75
- org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy-war (default-cli) on project food_share_web: Execution default-cli of goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy-war failed: Index 0 out of bounds for length 0
76
-
77
- at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215)
78
-
79
- at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
80
-
81
- at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
82
-
83
- at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
84
-
85
- (略)
86
-
87
- Error: For more information about the errors and possible solutions, please read the following articles:
88
-
89
- Error: [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginExecutionException
90
-
91
- Error: Process completed with exit code 1.
92
-
93
- ```
67
+ このうち、`Deploy for Heroku` のステップにおいて、GitHub Actionsにて実行すると、下記のようなエラーが発生してしまいます。
68
+
69
+
70
+
71
+ エラーメッセージ抜粋
72
+
73
+ ```
74
+
75
+ Error: Failed to execute goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy (default-cli) on project food_share_web: Execution default-cli of goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy failed: Index 0 out of bounds for length 0 -> [Help 1]
76
+
77
+ org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy (default-cli) on project food_share_web: Execution default-cli of goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy failed: Index 0 out of bounds for length 0
78
+
79
+ (省略)
80
+
81
+ Caused by: org.apache.maven.plugin.PluginExecutionException: Execution default-cli of goal com.heroku.sdk:heroku-maven-plugin:3.0.4:deploy failed: Index 0 out of bounds for length 0
82
+
83
+ Caused by: java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
84
+
85
+ ```
86
+
87
+
88
+
89
+ 共通しているのが、```Index 0 out of bounds for length 0```というエラーになります。
90
+
91
+ この内容が要素のない配列から要素を読み出そうとしてエラーになっているというのは分かるのですが、どの配列を読み出そうとしているのかが分からない状態です。
92
+
93
+
94
94
 
95
95
  手元の実機で `mvn -X clean heroku:deploy-war` のコマンドを実行した際には問題なくデプロイされ、エラーは発生しませんでした。
96
96