Add extremely broken day14pt2
[adventofcode2019.git] / project.clj
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"]
7 [org.clojure/core.match "0.3.0"]
8 [org.clojure/core.async "0.6.532"]
9 [org.clojure/math.combinatorics "0.1.6"]
10 [org.clojure/math.numeric-tower "0.0.4"]
11 [org.clojure/data.priority-map "0.0.10"]
12 [clojure-lanterna "0.9.4"]
13 [aysylu/loom "1.0.2"]]
14 :main ^:skip-aot adventofcode2019.core
15 :target-path "target/%s"
16 :profiles {:uberjar {:aot :all}})