Switched (partially) to Maven-based dependency resolution. Further work

forthcoming to fix up the tests.

Peskily, it looks like I'm going to have to take one for the team and become
the maintainer of a Maven artifact for LWJGL. In spite of repeated requests
over the years for Mavenized artifacts for LWJGL, Mazon resists it (he seems to
think he has to use Maven to *build* LWJGL, which he certainly need not do).
There have been a variety of half-assed attempts to maintain third-party Maven
repositories, all of which have petered out a major version or two ago.


git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@1045 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Michael Bayne
2010-11-08 18:51:32 +00:00
parent f1a2fe5e81
commit 63a26726d1
32 changed files with 327 additions and 192 deletions
-37
View File
@@ -1,37 +0,0 @@
<?xml version="1.0"?>
<!-- build configuration -->
<project name="nenya-checks" basedir=".">
<!-- checks the availability of certain libraries -->
<target name="check-available">
<available property="lwjgl.present"
classname="org.lwjgl.LWJGLException" classpathref="classpath"/>
<echo level="info" message="Have LWJGL: ${lwjgl.present}"/>
<available property="jorbis.present"
classname="com.jcraft.jorbis.Info" classpathref="classpath"/>
<echo level="info" message="Have JOrbis: ${jorbis.present}"/>
<available property="jl.present"
classname="javazoom.jl.decoder.Decoder" classpathref="classpath"/>
<echo level="info" message="Have JL: ${jl.present}"/>
<available property="xml-writer.present"
classname="com.megginson.sax.DataWriter" classpathref="classpath"/>
<echo level="info" message="Have XML Writer: ${xml-writer.present}"/>
<condition property="build.openal">
<and>
<isset property="lwjgl.present"/>
<isset property="jorbis.present"/>
<isset property="jl.present"/>
</and>
</condition>
<condition property="build.xml">
<isset property="xml-writer.present"/>
</condition>
</target>
</project>
-31
View File
@@ -1,31 +0,0 @@
<?xml version="1.0"?>
<!-- declares the libraries needed to build nenya -->
<project name="library-dependencies">
<fileset dir="${libs.dir}" id="nenya.libs">
<!-- Java dependencies -->
<include name="ant.jar"/>
<include name="commons-beanutils.jar"/>
<include name="commons-collections.jar"/>
<include name="commons-digester.jar"/>
<include name="commons-logging.jar"/>
<include name="guava.jar"/>
<include name="guice.jar"/>
<include name="javassist.jar"/>
<include name="junit4.jar"/>
<include name="narya.jar"/>
<include name="retroweaver-all-1.2.2.jar"/>
<include name="samskivert.jar"/>
<include name="xml-writer.jar"/>
<!-- these LWJGL (for OpenAL) and codec libraries are optional -->
<include name="lwjgl.jar"/>
<include name="lwjgl_util.jar"/>
<include name="jogg-0.0.7.jar"/>
<include name="jorbis-0.0.15.jar"/>
<include name="jl1.0.jar"/>
<!-- ActionScript dependencies -->
<include name="as3isolib-fp9.swc"/>
<include name="aspirin.swc"/>
<include name="flexlib.swc"/>
<include name="naryalib.swc"/>
</fileset>
</project>