vivo/webapp/pom.xml

67 lines
2.2 KiB
XML
Raw Normal View History

2015-11-19 23:47:41 +00:00
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.vivoweb</groupId>
<artifactId>vivo-webapp</artifactId>
<version>1.9.0-SNAPSHOT</version>
<packaging>war</packaging>
<parent>
<groupId>org.vivoweb</groupId>
<artifactId>vivo-project</artifactId>
<version>1.9.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<name>VIVO Web App</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
2015-11-20 21:21:25 +00:00
<packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
<archiveClasses>false</archiveClasses>
2015-11-19 23:47:41 +00:00
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
<overlays>
<overlay>
<groupId>org.vivoweb</groupId>
<artifactId>vitro-webapp</artifactId>
<type>war</type>
</overlay>
</overlays>
2016-05-23 15:11:33 +01:00
<webResources>
<resource>
<directory>src/main/webResources</directory>
<filtering>true</filtering>
</resource>
</webResources>
2015-11-19 23:47:41 +00:00
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.vivoweb</groupId>
<artifactId>vitro-webapp</artifactId>
<type>war</type>
</dependency>
<dependency>
<groupId>org.vivoweb</groupId>
<artifactId>vivo-api</artifactId>
<version>1.9.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>