50 lines
1.3 KiB
XML
50 lines
1.3 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>vitro-project</artifactId>
|
||
|
<version>1.9.0-SNAPSHOT</version>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<name>Vitro</name>
|
||
|
|
||
|
<modules>
|
||
|
<module>api</module>
|
||
|
<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>
|
||
|
</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>
|