Repository: incubator-batchee Updated Branches: refs/heads/master 1c32a216c -> 31c162109
BATCHEE-16 creating a war with BatchEE servlet module Project: http://git-wip-us.apache.org/repos/asf/incubator-batchee/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-batchee/commit/31c16210 Tree: http://git-wip-us.apache.org/repos/asf/incubator-batchee/tree/31c16210 Diff: http://git-wip-us.apache.org/repos/asf/incubator-batchee/diff/31c16210 Branch: refs/heads/master Commit: 31c162109780464a8f57cf1bb2bd7d2c13fb0102 Parents: 1c32a21 Author: Romain Manni-Bucau <[email protected]> Authored: Sun Feb 23 22:52:14 2014 +0100 Committer: Romain Manni-Bucau <[email protected]> Committed: Sun Feb 23 22:52:14 2014 +0100 ---------------------------------------------------------------------- gui/servlet/pom.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-batchee/blob/31c16210/gui/servlet/pom.xml ---------------------------------------------------------------------- diff --git a/gui/servlet/pom.xml b/gui/servlet/pom.xml index d3e4391..d635301 100644 --- a/gui/servlet/pom.xml +++ b/gui/servlet/pom.xml @@ -28,6 +28,7 @@ <artifactId>batchee-servlet</artifactId> <name>BatchEE :: GUI :: Servlet</name> + <packaging>war</packaging> <dependencies> <dependency> @@ -107,6 +108,16 @@ <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <version>2.4</version> + <configuration> + <failOnMissingWebXml>false</failOnMissingWebXml> + <archiveClasses>true</archiveClasses> + <attachClasses>true</attachClasses> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <executions>
