vivo/installer/webapp/pom.xml

103 lines
3.7 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</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>
<overlays>
<overlay>
<groupId>org.vivoweb</groupId>
<artifactId>vivo-webapp</artifactId>
<type>war</type>
</overlay>
</overlays>
2015-11-20 21:21:25 +00:00
<webResources>
<resource>
<directory>src/main/webResources</directory>
<filtering>true</filtering>
</resource>
</webResources>
2015-11-19 23:47:41 +00:00
</configuration>
2015-11-20 21:21:25 +00:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
2015-11-19 23:47:41 +00:00
<executions>
<execution>
2015-11-20 21:21:25 +00:00
<id>install</id>
<phase>install</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<type>war</type>
<overWrite>true</overWrite>
<outputDirectory>${tomcat-dir}/webapps/${app-name}</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
2015-11-19 23:47:41 +00:00
</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>
2015-11-20 21:21:25 +00:00
<artifactId>vivo-api</artifactId>
2015-11-19 23:47:41 +00:00
<version>1.9.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.vivoweb</groupId>
2015-11-20 21:21:25 +00:00
<artifactId>vivo-webapp</artifactId>
2015-11-19 23:47:41 +00:00
<version>1.9.0-SNAPSHOT</version>
2015-11-20 21:21:25 +00:00
<type>war</type>
2015-11-19 23:47:41 +00:00
</dependency>
</dependencies>
</project>