diff --git a/project.clj b/project.clj index 7cc28a8..b182beb 100644 --- a/project.clj +++ b/project.clj @@ -3,12 +3,10 @@ :url "https://github.com/oakes/play-clj" :license {:name "Public Domain" :url "http://unlicense.org/UNLICENSE"} - :dependencies [[com.badlogicgames.gdx/gdx "1.0-SNAPSHOT"] - [com.badlogicgames.gdx/gdx-box2d "1.0-SNAPSHOT"] - [com.badlogicgames.gdx/gdx-bullet "1.0-SNAPSHOT"] + :dependencies [[com.badlogicgames.gdx/gdx "1.0.0"] + [com.badlogicgames.gdx/gdx-box2d "1.0.0"] + [com.badlogicgames.gdx/gdx-bullet "1.0.0"] [org.clojure/clojure "1.6.0"]] - :repositories [["sonatype" - "https://oss.sonatype.org/content/repositories/snapshots/"]] :source-paths ["src"] :java-source-paths ["src-java"] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]) diff --git a/template/resources/armeabi-v7a/libgdx-bullet.so b/template/resources/armeabi-v7a/libgdx-bullet.so index 2a19c0f..e07c51d 100644 Binary files a/template/resources/armeabi-v7a/libgdx-bullet.so and b/template/resources/armeabi-v7a/libgdx-bullet.so differ diff --git a/template/resources/armeabi/libgdx-bullet.so b/template/resources/armeabi/libgdx-bullet.so index da10dc3..df2dde3 100644 Binary files a/template/resources/armeabi/libgdx-bullet.so and b/template/resources/armeabi/libgdx-bullet.so differ diff --git a/template/resources/ios/libObjectAL.a b/template/resources/ios/libObjectAL.a index 5b01a01..2afc706 100644 Binary files a/template/resources/ios/libObjectAL.a and b/template/resources/ios/libObjectAL.a differ diff --git a/template/resources/ios/libgdx-box2d.a b/template/resources/ios/libgdx-box2d.a index 5c25068..aeb339b 100644 Binary files a/template/resources/ios/libgdx-box2d.a and b/template/resources/ios/libgdx-box2d.a differ diff --git a/template/resources/ios/libgdx-bullet.a b/template/resources/ios/libgdx-bullet.a index 194c31a..58ff243 100644 Binary files a/template/resources/ios/libgdx-bullet.a and b/template/resources/ios/libgdx-bullet.a differ diff --git a/template/resources/ios/libgdx.a b/template/resources/ios/libgdx.a index e070b32..7495b1f 100644 Binary files a/template/resources/ios/libgdx.a and b/template/resources/ios/libgdx.a differ diff --git a/template/resources/x86/libgdx-bullet.so b/template/resources/x86/libgdx-bullet.so index 06e34c2..9b8094a 100644 Binary files a/template/resources/x86/libgdx-bullet.so and b/template/resources/x86/libgdx-bullet.so differ diff --git a/template/src/leiningen/new/play_clj/android-project.clj b/template/src/leiningen/new/play_clj/android-project.clj index 86dd309..25e95fe 100644 --- a/template/src/leiningen/new/play_clj/android-project.clj +++ b/template/src/leiningen/new/play_clj/android-project.clj @@ -1,11 +1,11 @@ (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" - :dependencies [[com.badlogicgames.gdx/gdx "1.0" :use-resources true] - [com.badlogicgames.gdx/gdx-backend-android "1.0"] + :dependencies [[com.badlogicgames.gdx/gdx "1.0.0" :use-resources true] + [com.badlogicgames.gdx/gdx-backend-android "1.0.0"] [neko/neko "3.0.1"] - [com.badlogicgames.gdx/gdx-box2d "1.0"] - [com.badlogicgames.gdx/gdx-bullet "1.0"] + [com.badlogicgames.gdx/gdx-box2d "1.0.0"] + [com.badlogicgames.gdx/gdx-bullet "1.0.0"] [org.clojure-android/clojure "1.6.0-RC1" :use-resources true] [play-clj "0.3.0"]] :profiles {:dev {:dependencies [[android/tools.nrepl "0.2.0-bigstack"] diff --git a/template/src/leiningen/new/play_clj/desktop-project.clj b/template/src/leiningen/new/play_clj/desktop-project.clj index 10a1ad7..53006eb 100644 --- a/template/src/leiningen/new/play_clj/desktop-project.clj +++ b/template/src/leiningen/new/play_clj/desktop-project.clj @@ -1,15 +1,15 @@ (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" - :dependencies [[com.badlogicgames.gdx/gdx "1.0"] - [com.badlogicgames.gdx/gdx-backend-lwjgl "1.0"] - [com.badlogicgames.gdx/gdx-box2d "1.0"] - [com.badlogicgames.gdx/gdx-box2d-platform "1.0" + :dependencies [[com.badlogicgames.gdx/gdx "1.0.0"] + [com.badlogicgames.gdx/gdx-backend-lwjgl "1.0.0"] + [com.badlogicgames.gdx/gdx-box2d "1.0.0"] + [com.badlogicgames.gdx/gdx-box2d-platform "1.0.0" :classifier "natives-desktop"] - [com.badlogicgames.gdx/gdx-bullet "1.0"] - [com.badlogicgames.gdx/gdx-bullet-platform "1.0" + [com.badlogicgames.gdx/gdx-bullet "1.0.0"] + [com.badlogicgames.gdx/gdx-bullet-platform "1.0.0" :classifier "natives-desktop"] - [com.badlogicgames.gdx/gdx-platform "1.0" + [com.badlogicgames.gdx/gdx-platform "1.0.0" :classifier "natives-desktop"] [org.clojure/clojure "1.6.0"] [play-clj "0.3.0"]] diff --git a/template/src/leiningen/new/play_clj/ios-project.clj b/template/src/leiningen/new/play_clj/ios-project.clj index e10da57..504c612 100644 --- a/template/src/leiningen/new/play_clj/ios-project.clj +++ b/template/src/leiningen/new/play_clj/ios-project.clj @@ -1,9 +1,9 @@ (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" - :dependencies [[com.badlogicgames.gdx/gdx "1.0"] - [com.badlogicgames.gdx/gdx-backend-robovm "1.0"] - [com.badlogicgames.gdx/gdx-box2d "1.0"] - [com.badlogicgames.gdx/gdx-bullet "1.0"] + :dependencies [[com.badlogicgames.gdx/gdx "1.0.0"] + [com.badlogicgames.gdx/gdx-backend-robovm "1.0.0"] + [com.badlogicgames.gdx/gdx-box2d "1.0.0"] + [com.badlogicgames.gdx/gdx-bullet "1.0.0"] [org.clojure/clojure "1.6.0"] [play-clj "0.3.0"]] :source-paths ["src/clojure" "../desktop/src-common"]