77 lines
2.5 KiB
XML
77 lines
2.5 KiB
XML
![]() |
<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</artifactId>
|
||
|
<version>1.9.0-SNAPSHOT</version>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.vivoweb</groupId>
|
||
|
<artifactId>vivo-installer</artifactId>
|
||
|
<version>1.9.0-SNAPSHOT</version>
|
||
|
<relativePath>..</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<name>VIVO Prepare Web App</name>
|
||
|
|
||
|
<build>
|
||
|
<!-- filters>
|
||
|
<filter>${filters.file}</filter>
|
||
|
</filters -->
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
<version>2.6</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<addClasspath>true</addClasspath>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
<archiveClasses>false</archiveClasses>
|
||
|
<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
|
||
|
<overlays>
|
||
|
<overlay>
|
||
|
<groupId>org.vivoweb</groupId>
|
||
|
<artifactId>vivo-webapp</artifactId>
|
||
|
<type>war</type>
|
||
|
</overlay>
|
||
|
</overlays>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>prepare-package</phase>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-install-plugin</artifactId>
|
||
|
<version>2.5.2</version>
|
||
|
<configuration>
|
||
|
<skip>true</skip>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.vivoweb</groupId>
|
||
|
<artifactId>vivo-webapp</artifactId>
|
||
|
<version>1.9.0-SNAPSHOT</version>
|
||
|
<type>war</type>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.vivoweb</groupId>
|
||
|
<artifactId>vivo-api</artifactId>
|
||
|
<version>1.9.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|