Last active
March 2, 2018 09:53
-
-
Save rah003/85ba9d73703aec29f6eb7efaafbb511d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<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> | |
<parent> | |
<groupId>info.magnolia</groupId> | |
<artifactId>custom-554-with-new-rest</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<relativePath>../pom.xml</relativePath> | |
</parent> | |
<artifactId>custom-554-with-new-rest-webapp</artifactId> | |
<name>custom-554-with-new-rest: webapp</name> | |
<packaging>war</packaging> | |
<dependencies> | |
<dependency> | |
<groupId>info.magnolia.eebundle</groupId> | |
<artifactId>magnolia-enterprise-pro-webapp</artifactId> | |
<type>war</type> | |
</dependency> | |
<dependency> | |
<groupId>info.magnolia.eebundle</groupId> | |
<artifactId>magnolia-enterprise-pro-webapp</artifactId> | |
<type>pom</type> | |
</dependency> | |
<dependency> | |
<groupId>info.magnolia.rest</groupId> | |
<artifactId>magnolia-rest-content-delivery</artifactId> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<artifactId>maven-war-plugin</artifactId> | |
<configuration> | |
<!-- exclude jars copied "physically" from the webapp overlay - so we only get those resolved by Maven's dependency management --> | |
<dependentWarExcludes>WEB-INF/lib/*.jar</dependentWarExcludes> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment