前提・実現したいこと
GiuhubとHerokuを連携し、heroku上でDeployBranchボタンを押すとエラーが出てしまうのですが、なんとかデプロイしたいです。はじめてのHerokuでネット上にあるデプロイ方法に沿って進めています。アドバイスいただけたら幸いです。よろしくお願いいたします。
ここに質問の内容を詳しく書いてください。
発生している問題・エラーメッセージ
全文を載せてしまうと文字超過してしまうため、エラー表示箇所を抜粋させていただきました。
-----> Java app detected -----> Installing JDK 1.8... done -----> Installing Maven 3.6.2... done -----> Executing Maven $ mvn -DskipTests clean dependency:list install [INFO] Scanning for projects... [INFO] Downloading from central: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.2:war (default-war) on project Plus: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode) -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [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 read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException ! ERROR: Failed to build app with Maven We're sorry this build is failing! If you can't find the issue in application code, please submit a ticket so we can help: https://help.heroku.com/ ! Push rejected, failed to compile Java app. ! Push failed
該当のソースコード
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>mvnapptest</groupId> <artifactId>mvnapptest</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>mvnapptest Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> <scope>provided</scope> </dependency> </dependencies> <build> <finalName>mvnapptest</finalName> </build> <properties> <java.version>1.8</java.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> </project> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals><goal>copy</goal></goals> <configuration> <artifactItems> <artifactItem> <groupId>com.github.ichinosee</groupId> <artifactId>webapp-runner</artifactId> <version>9.0.13.0</version> <destFileName>webapp-runner.jar</destFileName> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin>
試したこと
エラーがほとんど同じだったので、こちらのサイトを参考にさせていただきました。
ここで出るエラー解決はなんとかクリアしたはずなのですが、、、
https://qiita.com/ShandyGaffLover/items/0dad6ebf48d649aab761#fn1
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/06 16:09
2020/09/06 23:56