97ec8632ae
I've long wanted to do this, but the launcher's use of all the samskivert UI stuff made it onerous. Now that the launcher is a separate module, we can remove the samskivert dependency in core (and tools), which simplifies things and makes it easier to depend on core in a (future) self-updating app (when we add support for that).
40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.threerings.getdown</groupId>
|
|
<artifactId>getdown</artifactId>
|
|
<version>1.8-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>getdown-core</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Getdown Core</name>
|
|
<description>Core Getdown functionality</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>1.10.19</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource> <!-- include the LICENSE file in the jar -->
|
|
<directory>..</directory>
|
|
<includes><include>LICENSE</include></includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|