A nenya-tools artifact, which incidentally does not depend on narya-tools.

Nenya's tools mainly just need Apache Digester and the SAX XML writer.


git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@1094 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Michael Bayne
2010-12-02 18:22:55 +00:00
parent c7902aa0fa
commit e271864399
2 changed files with 42 additions and 0 deletions
+5
View File
@@ -329,6 +329,11 @@
<remoteRepository url="${maven.deploy.repo}"/> <remoteRepository url="${maven.deploy.repo}"/>
<pom refid="pom"/> <pom refid="pom"/>
</artifact:deploy> </artifact:deploy>
<artifact:pom id="tools-pom" file="tools-pom.xml"/>
<artifact:deploy file="${deploy.dir}/${ant.project.name}.jar" uniqueVersion="false">
<remoteRepository url="${maven.deploy.repo}"/>
<pom refid="tools-pom"/>
</artifact:deploy>
<artifact:pom id="as-pom" file="as-pom.xml"/> <artifact:pom id="as-pom" file="as-pom.xml"/>
<artifact:deploy file="${deploy.dir}/${ant.project.name}lib.swc" uniqueVersion="false"> <artifact:deploy file="${deploy.dir}/${ant.project.name}lib.swc" uniqueVersion="false">
<remoteRepository url="${maven.deploy.repo}"/> <remoteRepository url="${maven.deploy.repo}"/>
+37
View File
@@ -0,0 +1,37 @@
<?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>
<groupId>com.threerings</groupId>
<artifactId>nenya-tools</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>nenya-tools</name>
<description>Nenya with dependencies configured for its tools.</description>
<dependencies>
<dependency>
<groupId>com.samskivert</groupId>
<artifactId>samskivert</artifactId>
<version>1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>r07</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>1.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.megginson.sax</groupId>
<artifactId>xml-writer</artifactId>
<version>0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>