]>
Commit | Line | Data |
---|---|---|
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 | 8 | [org.clojure/math.combinatorics "0.1.6"] |
7a710645 JK |
9 | [org.clojure/core.async "0.6.532"] |
10 | [org.clojure/data.priority-map "0.0.10"]] | |
cca08f5d JK |
11 | :main ^:skip-aot adventofcode2019.core |
12 | :target-path "target/%s" | |
13 | :profiles {:uberjar {:aot :all}}) |