Commit 6e99c57b by Jason Song

Merge pull request #17 from nobodyiam/fix-war-package-error

Config war plugin to work when there is no web.xml
parents 854cec2f 7976a7d8
...@@ -153,6 +153,13 @@ ...@@ -153,6 +153,13 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment