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>
|
2020-03-07 10:46:41 -06:00
|
|
|
<version>1.11.2-SNAPSHOT</version>
|
2015-11-19 23:47:41 +00:00
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-project</artifactId>
|
2020-03-07 10:46:41 -06:00
|
|
|
<version>1.11.2-SNAPSHOT</version>
|
2015-11-19 23:47:41 +00:00
|
|
|
<relativePath>..</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<name>VIVO Web App</name>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<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>
|
2016-07-04 20:33:47 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>overlays</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-11-19 23:47:41 +00:00
|
|
|
</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>
|
2020-03-07 10:46:41 -06:00
|
|
|
<version>1.11.2-SNAPSHOT</version>
|
2015-11-19 23:47:41 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|