2015-11-19 23:47:12 +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>vitro-project</artifactId>
|
|
|
|
<version>1.9.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2016-05-23 15:11:16 +01:00
|
|
|
<properties>
|
|
|
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
|
|
|
|
<build.timestamp>${maven.build.timestamp}</build.timestamp>
|
|
|
|
</properties>
|
|
|
|
|
2015-11-19 23:47:12 +00:00
|
|
|
<name>Vitro</name>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>api</module>
|
2015-11-21 16:48:35 +00:00
|
|
|
<module>dependencies</module>
|
2015-11-19 23:47:12 +00:00
|
|
|
<module>webapp</module>
|
|
|
|
<module>solr</module>
|
|
|
|
<module>home</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>vitro-dev</id>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<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>
|
2016-05-23 15:11:16 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>buildnumber-maven-plugin</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>create</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<doCheck>false</doCheck>
|
|
|
|
<doUpdate>false</doUpdate>
|
|
|
|
<shortRevisionLength>7</shortRevisionLength>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-11-19 23:47:12 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>vivo-dependencies</id>
|
|
|
|
<name>VIVO Dependencies</name>
|
|
|
|
<url>https://raw.github.com/vivo-project/dependencies/master/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2016-05-23 15:11:16 +01:00
|
|
|
|
|
|
|
<!--
|
|
|
|
The SCM repository location is used by Continuum to update against
|
|
|
|
when changes have occurred. This spawns a new build cycle and releases
|
|
|
|
snapshots into the snapshot repository below.
|
|
|
|
-->
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:vivo-project/Vitro.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:vivo-project/Vitro.git</developerConnection>
|
|
|
|
<url>git@github.com:vivo-project/Vitro.git</url>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
</scm>
|
2015-11-19 23:47:12 +00:00
|
|
|
</project>
|