this repo has no description
1(defproject aoc2025 "0.1.0-SNAPSHOT"
2 :description "FIXME: write description"
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.11.1"]]
7 :main ^:skip-aot aoc2025.core
8 :target-path "target/%s"
9 :profiles {:uberjar {:aot :all
10 :jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})