Skip to content

Commit

Permalink
Fixes #8 - Make maven-war-plugin not require a web.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfernandez committed Feb 20, 2018
1 parent a3824bc commit 47fd7d2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,21 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
</plugin>
</plugin>

</plugins>

</build>
Expand Down

0 comments on commit 47fd7d2

Please sign in to comment.