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-installer</artifactId>
|
2016-10-31 19:47:04 +00:00
|
|
|
<version>1.10.0-SNAPSHOT</version>
|
2015-11-19 23:47:41 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>VIVO Installer</name>
|
|
|
|
|
2016-06-24 20:28:26 +01:00
|
|
|
<properties>
|
|
|
|
<vitro-version>${project.version}</vitro-version>
|
|
|
|
</properties>
|
|
|
|
|
2015-11-19 23:47:41 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2016-08-26 16:10:19 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2016-08-26 16:16:16 +01:00
|
|
|
<encoding>UTF-8</encoding>
|
2016-08-26 16:10:19 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-11-20 21:21:25 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
2015-11-19 23:47:41 +00:00
|
|
|
</plugin>
|
2016-06-24 20:52:48 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-06-23 19:12:05 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-11-19 23:47:41 +00:00
|
|
|
</plugins>
|
2016-07-06 06:38:45 +01:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
</plugin>
|
2016-07-18 19:27:34 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
2016-07-06 06:38:45 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.5.5</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-08-26 16:16:16 +01:00
|
|
|
<version>3.5.1</version>
|
2016-07-06 06:38:45 +01:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>2.10</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<version>1.4.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.5.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.7</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.12.4</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2015-11-19 23:47:41 +00:00
|
|
|
</build>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>home</module>
|
2015-11-20 21:21:25 +00:00
|
|
|
<module>solr</module>
|
2015-11-19 23:47:41 +00:00
|
|
|
<module>webapp</module>
|
|
|
|
</modules>
|
2015-11-21 19:17:05 +00:00
|
|
|
|
2016-06-24 20:28:26 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vitro-solr</artifactId>
|
|
|
|
<version>${vitro-version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-home</artifactId>
|
|
|
|
<version>${vitro-version}</version>
|
|
|
|
<type>tar.gz</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-api</artifactId>
|
|
|
|
<version>${vitro-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.vivoweb</groupId>
|
|
|
|
<artifactId>vivo-webapp</artifactId>
|
|
|
|
<version>${vitro-version}</version>
|
|
|
|
<type>war</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2015-11-21 19:17:05 +00:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>skip-install</id>
|
|
|
|
<activation>
|
|
|
|
<property><name>!vivo-dir</name></property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2016-07-06 06:19:51 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-11-21 19:17:05 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-compile</id>
|
|
|
|
<phase />
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>default-testCompile</id>
|
|
|
|
<phase />
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-07-06 06:19:51 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-11-21 19:17:05 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-resources</id>
|
|
|
|
<phase />
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>default-testResources</id>
|
|
|
|
<phase />
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>test</id>
|
|
|
|
<phase/>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-war</id>
|
|
|
|
<phase/>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2015-11-26 15:46:57 +00:00
|
|
|
<profile>
|
|
|
|
<id>install</id>
|
|
|
|
<activation>
|
|
|
|
<property><name>vivo-dir</name></property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce-properties</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<requireProperty>
|
|
|
|
<property>app-name</property>
|
|
|
|
<message>You must provide an application name (app-name)</message>
|
|
|
|
</requireProperty>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2015-11-21 19:17:05 +00:00
|
|
|
</profiles>
|
2015-11-19 23:47:41 +00:00
|
|
|
</project>
|