Skip to content
alistairrutherford edited this page Mar 9, 2013 · 20 revisions

Pre-requisites

A) The project is fully mavenized with all of the libraries you will need with one exception. The "tween engine" will have to be installed into your local respository.

Download the tween engine distribution from the tween-engine Google code site here:

https://code.google.com/p/java-universal-tween-engine/downloads/list

Unzip the jar files.

You will need to install these to your local repository. I have bundled a batch file which illustrates how to do this but basically it's the following:

mvn install:install-file -Dfile=libs\tween-engine-api.jar -DgroupId=aurelienribon.tweenengine -DartifactId=tween-engine-api -Dversion=6.3.3 -Dpackaging=jar -DgeneratePom=true

mvn install:install-file -Dfile=libs\tween-engine-api-sources.jar -DgroupId=aurelienribon.tweenengine -DartifactId=tween-engine-api-sources -Dversion=6.3.3 -Dpackaging=jar -DgeneratePom=true

B) Build the netthreads-libgdx library and install to your local repo:

mvn install

Build

The demos use the LibGDX maven archetype so you can build the different targets using the instructions here:

https://code.google.com/p/libgdx/wiki/MavenProjectSetup

Clone this wiki locally