-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
22 lines (22 loc) · 1.17 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject mhavrlent/clj-openweather-tray "0.0.4"
:description "System tray app for Windows OS that shows outside temperature in given city using data from openweathermap.org."
:url "https://github.com/mhavrlent/clj-openweather-tray"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.1"]
[clj-http "3.10.0"]
[org.clojure/data.json "1.0.0"]]
:main ^:skip-aot clj-openweather-tray.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}}
:native-image {:opts ["--verbose"
"--no-fallback"
"--no-server"
"--report-unsupported-elements-at-runtime"
"-H:+ReportExceptionStackTraces"
"-J-Dclojure.spec.skip-macros=true"
"-J-Dclojure.compiler.direct-linking=true"
"-H:ReflectionConfigurationFiles=reflection.json"
"--initialize-at-build-time"
"-J-Xmx3g"
"-H:Log=registerResource:"]})