bare project

This commit is contained in:
2017-04-27 21:49:02 -07:00
commit 61ee269048
8 changed files with 311 additions and 0 deletions

9
project.clj Normal file
View File

@ -0,0 +1,9 @@
(defproject voxelburst "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]]
:main ^:skip-aot voxelburst.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})