Skip to content

Instantly share code, notes, and snippets.

@warmwaffles
Created November 4, 2013 05:10
Show Gist options
  • Save warmwaffles/7298310 to your computer and use it in GitHub Desktop.
Save warmwaffles/7298310 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "pulling nightly down..."
mkdir -p libs
rm libs/*.jar
curl -o libs/gdx.jar "http://libgdx.badlogicgames.com/nightlies/dist/gdx.jar"
curl -o libs/gdx-sources.jar "http://libgdx.badlogicgames.com/nightlies/dist/sources/gdx-sources.jar"
curl -o libs/gdx-natives.jar "http://libgdx.badlogicgames.com/nightlies/dist/gdx-natives.jar"
curl -o libs/gdx-backend-lwjgl.jar "http://libgdx.badlogicgames.com/nightlies/dist/gdx-backend-lwjgl.jar"
curl -o libs/gdx-backend-lwjgl-sources.jar "http://libgdx.badlogicgames.com/nightlies/dist/sources/gdx-backend-lwjgl-sources.jar"
curl -o libs/gdx-backend-lwjgl-natives.jar "http://libgdx.badlogicgames.com/nightlies/dist/gdx-backend-lwjgl-natives.jar"
curl -o libs/junit.jar "http://search.maven.org/remotecontent?filepath=junit/junit/4.11/junit-4.11.jar"
curl -o libs/junit-sources.jar "http://search.maven.org/remotecontent?filepath=junit/junit/4.11/junit-4.11-sources.jar"
curl -o libs/hamcrest-core.jar "http://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"
curl -o libs/hamcrest-core-source.jar "http://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar"
echo "done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment