現在 Mavenプロジェクトにおいて、GitHub Actionsを用いた自動デプロイ(CD)を行おうとしております。
設定したワークフローは下記のYAMLファイルになります。
yml
1# This workflow will build a Java project with Maven 2# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven 3 4name: Java CI with Maven 5 6on: 7 push: 8 branches: [ main ] 9 pull_request: 10 branches: [ main ] 11 12jobs: 13 build: 14 15 runs-on: ubuntu-latest 16 17 steps: 18 - uses: actions/checkout@v2 19 - name: Set up JDK 8 20 uses: actions/setup-java@v2 21 with: 22 java-version: '8' 23 distribution: 'adopt' 24 - name: Build with Maven 25 run: mvn -B package --file pom.xml 26 - name: Deploy for Heroku 27 run: mvn -X clean heroku:deploy-war
このうち、Deploy for Heroku
のステップにおいて、GitHub Actionsにて実行すると、下記のようなエラーが発生してしまいます。
エラーメッセージ抜粋
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] 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 (省略) 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 Caused by: java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
共通しているのが、Index 0 out of bounds for length 0
というエラーになります。
この内容が要素のない配列から要素を読み出そうとしてエラーになっているというのは分かるのですが、どの配列を読み出そうとしているのかが分からない状態です。
手元の実機で mvn -X clean heroku:deploy-war
のコマンドを実行した際には問題なくデプロイされ、エラーは発生しませんでした。
エラーの解消について、以下のページを参考に設定をしたりしたのですが、どうにもエラーが解決出来ずに困っております。
どなたか解決方をご存知でしたら、ご教授いただけると幸いです。
必要な情報として、下記がレポジトリで実行したMavenのバージョン情報です。
cli
1$ mvn --version 2Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d) 3Maven home: /usr/local/Cellar/maven/3.8.1/libexec 4Java version: 15.0.2, vendor: Oracle Corporation, runtime: /Users/itouryousuke/Library/Java/JavaVirtualMachines/openjdk-15.0.2/Contents/Home 5Default locale: ja_JP, platform encoding: UTF-8 6OS name: "mac os x", version: "10.16", arch: "x86_64", family: "mac"
pom.xmlについては下記になります。
xml
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <modelVersion>4.0.0</modelVersion> 4 <groupId>jp.example</groupId> 5 <artifactId>food_share_web</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 <packaging>war</packaging> 8 <build> 9 <sourceDirectory>src</sourceDirectory> 10 <testSourceDirectory>test</testSourceDirectory> 11 <plugins> 12 <plugin> 13 <artifactId>maven-compiler-plugin</artifactId> 14 <version>3.8.1</version> 15 <configuration> 16 <source>1.8</source> 17 <target>1.8</target> 18 </configuration> 19 </plugin> 20 <plugin> 21 <artifactId>maven-war-plugin</artifactId> 22 <version>3.0.0</version> 23 <configuration> 24 <warSourceDirectory>WebContent</warSourceDirectory> 25 </configuration> 26 </plugin> 27 <plugin> 28 <groupId>com.heroku.sdk</groupId> 29 <artifactId>heroku-maven-plugin</artifactId> 30 <version>3.0.4</version> 31 <configuration> 32 <appName>foodshareweb</appName> 33 </configuration> 34 </plugin> 35 </plugins> 36 </build> 37 <dependencies> 38 <dependency> 39 <groupId>mysql</groupId> 40 <artifactId>mysql-connector-java</artifactId> 41 <version>5.1.45</version> 42 </dependency> 43 <dependency> 44 <groupId>org.hibernate</groupId> 45 <artifactId>hibernate-core</artifactId> 46 <version>5.2.13.Final</version> 47 </dependency> 48 <dependency> 49 <groupId>org.apache.taglibs</groupId> 50 <artifactId>taglibs-standard-impl</artifactId> 51 <version>1.2.5</version> 52 </dependency> 53 <dependency> 54 <groupId>javax.servlet.jsp.jstl</groupId> 55 <artifactId>javax.servlet.jsp.jstl-api</artifactId> 56 <version>1.2.1</version> 57 </dependency> 58 <dependency> 59 <groupId>javax.servlet</groupId> 60 <artifactId>javax.servlet-api</artifactId> 61 <version>3.0.1</version> 62 <scope>provided</scope> 63 </dependency> 64 <dependency> 65 <groupId>junit</groupId> 66 <artifactId>junit</artifactId> 67 <version>4.11</version> 68 <scope>test</scope> 69 </dependency> 70 <dependency> 71 <groupId>jakarta.xml.bind</groupId> 72 <artifactId>jakarta.xml.bind-api</artifactId> 73 <version>2.3.2</version> 74 </dependency> 75 <dependency> 76 <groupId>org.glassfish.jaxb</groupId> 77 <artifactId>jaxb-runtime</artifactId> 78 <version>2.3.2</version> 79 </dependency> 80 </dependencies> 81</project>
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。