diff --git a/project.clj b/project.clj index 2879ffd..f31ef61 100644 --- a/project.clj +++ b/project.clj @@ -1,10 +1,8 @@ -(defproject play-clj "0.2.3-SNAPSHOT" +(defproject play-clj "0.2.3" :description "A LibGDX wrapper for easy cross-platform game development" :url "https://github.com/oakes/play-clj" :license {:name "Public Domain" :url "http://unlicense.org/UNLICENSE"} :dependencies [[com.badlogicgames.gdx/gdx "0.9.9"] [org.clojure/clojure "1.5.1"]] - :repositories [["sonatype" - "https://oss.sonatype.org/content/repositories/snapshots/"]] :plugins [[lein-marginalia "0.7.1"]]) diff --git a/template/project.clj b/template/project.clj index e4fbe5f..e00f52f 100644 --- a/template/project.clj +++ b/template/project.clj @@ -1,4 +1,4 @@ -(defproject play-clj/lein-template "0.2.2" +(defproject play-clj/lein-template "0.2.3" :description "A template for making play-clj projects" :url "https://github.com/oakes/play-clj" :license {:name "Public Domain" diff --git a/template/src/leiningen/new/play_clj/android-project.clj b/template/src/leiningen/new/play_clj/android-project.clj index 86385c0..58f9137 100644 --- a/template/src/leiningen/new/play_clj/android-project.clj +++ b/template/src/leiningen/new/play_clj/android-project.clj @@ -5,7 +5,7 @@ [com.badlogicgames.gdx/gdx-backend-android "0.9.9"] [neko/neko "3.0.1"] [org.clojure-android/clojure "1.5.1-jb" :use-resources true] - [play-clj "0.2.2"]] + [play-clj "0.2.3"]] :profiles {:dev {:dependencies [[android/tools.nrepl "0.2.0-bigstack"] [compliment "0.0.3"]] :android {:aot :all-with-unused}} diff --git a/template/src/leiningen/new/play_clj/desktop-project.clj b/template/src/leiningen/new/play_clj/desktop-project.clj index 780c787..4796c95 100644 --- a/template/src/leiningen/new/play_clj/desktop-project.clj +++ b/template/src/leiningen/new/play_clj/desktop-project.clj @@ -6,7 +6,7 @@ [com.badlogicgames.gdx/gdx-platform "0.9.9" :classifier "natives-desktop"] [org.clojure/clojure "1.5.1"] - [play-clj "0.2.2"]] + [play-clj "0.2.3"]] :source-paths ["src" "src-common"] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"] diff --git a/template/src/leiningen/new/play_clj/ios-project.clj b/template/src/leiningen/new/play_clj/ios-project.clj index e29b812..396a353 100644 --- a/template/src/leiningen/new/play_clj/ios-project.clj +++ b/template/src/leiningen/new/play_clj/ios-project.clj @@ -3,7 +3,7 @@ :dependencies [[com.badlogicgames.gdx/gdx "0.9.9"] [com.badlogicgames.gdx/gdx-backend-robovm "0.9.9"] [org.clojure/clojure "1.5.1"] - [play-clj "0.2.2"]] + [play-clj "0.2.3"]] :source-paths ["src/clojure" "../desktop/src-common"] :java-source-paths ["src/java"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]