110 lines
3.4 KiB
XML
110 lines
3.4 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-project</artifactId>
|
|
<version>1.9.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<vitro-core>../Vitro</vitro-core>
|
|
<vitro-version>${project.version}</vitro-version>
|
|
<vivo-dir>${basedir}</vivo-dir>
|
|
</properties>
|
|
|
|
<name>VIVO</name>
|
|
|
|
<modules>
|
|
<module>api</module>
|
|
<module>webapp</module>
|
|
<module>home</module>
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>vitro</id>
|
|
<activation>
|
|
<file>
|
|
<exists>${vivo-dir}/${vitro-core}/pom.xml</exists>
|
|
</file>
|
|
</activation>
|
|
<modules>
|
|
<module>${vitro-core}</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>vivo-installer</id>
|
|
<modules>
|
|
<module>installer</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.vivoweb</groupId>
|
|
<artifactId>vitro-api</artifactId>
|
|
<version>${vitro-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.vivoweb</groupId>
|
|
<artifactId>vitro-api</artifactId>
|
|
<version>${vitro-version}</version>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.vivoweb</groupId>
|
|
<artifactId>vitro-webapp</artifactId>
|
|
<version>${vitro-version}</version>
|
|
<type>war</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>properties-maven-plugin</artifactId>
|
|
<version>1.0.0</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>read-project-properties</goal>
|
|
</goals>
|
|
<configuration>
|
|
<files>
|
|
<file>build.properties</file>
|
|
</files>
|
|
<quiet>true</quiet>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.3</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>vivo-dependencies</id>
|
|
<name>VIVO Dependencies</name>
|
|
<url>https://raw.github.com/vivo-project/dependencies/master/</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|