7f3f5098ed
Wow, writing to JSON is way simpler than writing to HTML. Too bad JSON wasn't around and popular twelve years ago.
82 lines
2.6 KiB
XML
82 lines
2.6 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="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>nenya-parent</artifactId>
|
|
<version>1.5-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>nenya-tools</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Nenya Tools</name>
|
|
|
|
<dependencies>
|
|
<!-- exported dependencies -->
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>nenya</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.threerings</groupId>
|
|
<artifactId>narya</artifactId>
|
|
<version>${narya.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-digester</groupId>
|
|
<artifactId>commons-digester</artifactId>
|
|
<version>1.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.megginson.sax</groupId>
|
|
<artifactId>xml-writer</artifactId>
|
|
<version>0.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.googlecode.playn</groupId>
|
|
<artifactId>playn-core</artifactId>
|
|
<version>1.5.1</version>
|
|
</dependency>
|
|
|
|
<!-- test/build dependencies -->
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
<version>1.7.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<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-surefire-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<includes>
|
|
<include>com/threerings/**/*Test.java</include>
|
|
</includes>
|
|
<!-- we have to skip these tests as they depend on resources being -->
|
|
<!-- prepared which are too fiddly to get working via Maven -->
|
|
<excludes>
|
|
<exclude>com/threerings/**/BundledComponentRepositoryTest.java</exclude>
|
|
<exclude>com/threerings/**/BundledTileSetRepositoryTest.java</exclude>
|
|
</excludes>
|
|
<systemPropertyVariables>
|
|
<resource_dir>target/test-classes/rsrc</resource_dir>
|
|
<no_unpack_resources>true</no_unpack_resources>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|