lots of tweaks for versioning and extracting script.

This commit is contained in:
Bryce Covert
2015-10-28 18:28:29 -07:00
parent 34933312a2
commit 43661dbf29
12 changed files with 68 additions and 103 deletions

View File

@@ -1,6 +1,10 @@
(defproject advent "0.0.1-SNAPSHOT"
:description "FIXME: write description"
(def version (str "0.1." (clojure.string/trim-newline (slurp "last-release"))))
(defproject advent version
:description "FIXME: write description"
:manifest {"Implementation-Version" ~version}
:uberjar-name "advent-standalone.jar"
:dependencies [[com.badlogicgames.gdx/gdx "1.5.3"]
[com.badlogicgames.gdx/gdx-backend-lwjgl "1.5.3"]
[com.badlogicgames.gdx/gdx-platform "1.5.3" :classifier "natives-desktop"]
@@ -12,10 +16,15 @@
:source-paths ["src" "src-common"]
:javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]
:omit-source true
:aliases {"pack" ["run" "-m" "com.badlogic.gdx.tools.texturepacker.TexturePacker" "asset-work/" "resources/packed/"]}
:aliases {"pack" ["run" "-m" "com.badlogic.gdx.tools.texturepacker.TexturePacker" "asset-work/" "resources/packed/"]
"script" ["run" "-m" "advent.analyze/dump-speech"]}
:profiles {
:dev {
:dependencies [[com.badlogicgames.gdx/gdx-tools "1.5.3"]]
:source-paths ["src" "src-common" "src-dev"]
:dependencies [[com.badlogicgames.gdx/gdx-tools "1.5.3"]
[slamhound "1.5.5"]
[org.clojure/data.csv "0.1.3"]]
:warn-on-reflection true}
}
:aot [advent.core.desktop-launcher]