Add unchecked day16pt1 (tests green)
[adventofcode2019.git] / project.clj
CommitLineData
cca08f5d
JK
1(defproject adventofcode2019 "0.1.0-SNAPSHOT"
2 :description "Advent of Code 2019"
3 :url "http://example.com/FIXME"
4;;:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
5;; :url "https://www.eclipse.org/legal/epl-2.0/"}
6 :dependencies [[org.clojure/clojure "1.10.0"]
2bdba715 7 [org.clojure/core.match "0.3.0"]
9a22e14c
JK
8 [org.clojure/math.combinatorics "0.1.6"]
9 [org.clojure/core.async "0.6.532"]]
cca08f5d
JK
10 :main ^:skip-aot adventofcode2019.core
11 :target-path "target/%s"
12 :profiles {:uberjar {:aot :all}})