create empty war file for scm-it

This commit is contained in:
Sebastian Sdorra
2020-03-11 12:42:02 +01:00
parent 49d62a6559
commit 7997b4e880

View File

@@ -97,6 +97,14 @@
<artifactId>maven-war-plugin</artifactId>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<!--
We need no war file.
We only use war packaging for the jetty plugin.
In order to avoid deploying huge useless artifacts,
we will create an empty war file.
This is useless too, but it should be small.
-->
<packagingExcludes>**</packagingExcludes>
</configuration>
</plugin>