f9b696b994
This is a public library, we need to depend on publicly available versions.
106 lines
3.2 KiB
XML
106 lines
3.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>vilya-parent</artifactId>
|
|
<version>1.6-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>vilya</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Vilya Core</name>
|
|
|
|
<dependencies>
|
|
<!-- exported dependencies -->
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>ooo-util</artifactId>
|
|
<version>1.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>narya</artifactId>
|
|
<version>1.15-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>nenya</artifactId>
|
|
<version>1.5</version>
|
|
</dependency>
|
|
|
|
<!-- optional dependencies -->
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>nenya-tools</artifactId>
|
|
<version>1.5</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-digester</groupId>
|
|
<artifactId>commons-digester</artifactId>
|
|
<version>2.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.samskivert</groupId>
|
|
<artifactId>depot</artifactId>
|
|
<version>1.6.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javassist</groupId>
|
|
<artifactId>javassist</artifactId>
|
|
<version>3.8.0.GA</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.megginson.sax</groupId>
|
|
<artifactId>xml-writer</artifactId>
|
|
<version>0.2</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- test dependencies -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.7</version>
|
|
<configuration>
|
|
<quiet>true</quiet>
|
|
<show>public</show>
|
|
<links>
|
|
<link>http://samskivert.github.com/samskivert/apidocs/</link>
|
|
<link>http://depot.googlecode.com/svn/apidocs/</link>
|
|
<link>http://docs.guava-libraries.googlecode.com/git/javadoc/</link>
|
|
<link>http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/</link>
|
|
</links>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>com/threerings/**/*Test.java</include>
|
|
</includes>
|
|
<systemPropertyVariables>
|
|
<test_dir>target/test-classes</test_dir>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|