view project.clj @ 178:8ba774291bac

Added run-demo alias to project.clj, disabled reflection warnings (will use lein check).
author Mikhail Kryshen <mikhail@kryshen.net>
date Fri, 18 Sep 2015 17:59:50 +0300
parents 6a29fcb6fe9a
children a43e3c9b007e
line source
1 (defproject indyvon "0.1.0-SNAPSHOT"
2 :description "INteractive DYnamic VisualizatiON: an experimental GUI library"
3 :url "https://bitbucket.org/kryshen/indyvon"
4 :license {:name "GNU LGPL version 3"
5 :url "http://www.gnu.org/licenses/lgpl-3.0.html"}
6 ;;:global-vars {*warn-on-reflection* true}
7 :profiles {:demo {:main indyvon.demo}}
8 :aliases {"run-demo" ["with-profile" "demo" "run"]}
9 :dependencies [[org.clojure/clojure "1.7.0"]
10 [com.google.guava/guava "18.0"]])