|
1 | 1 | (defproject aws-api-s3 "0.1.0-SNAPSHOT"
|
2 | 2 |
|
3 |
| - :dependencies [[org.clojure/clojure "1.10.2-rc1"] |
4 |
| - [com.cognitect.aws/api "0.8.484"] |
5 |
| - [com.cognitect.aws/endpoints "1.1.11.926"] |
6 |
| - [com.cognitect.aws/s3 "810.2.817.0"]] |
| 3 | + :dependencies [[org.clojure/clojure "1.12.0"] |
| 4 | + [com.cognitect.aws/api "0.8.692"] |
| 5 | + [com.cognitect.aws/endpoints "1.1.12.772"] |
| 6 | + [com.cognitect.aws/s3 "869.2.1687.0"] |
| 7 | + [com.github.clj-easy/graal-build-time "1.0.5"]] |
7 | 8 |
|
8 | 9 | :main simple.main
|
9 | 10 |
|
10 | 11 | :uberjar-name "simple-main.jar"
|
11 | 12 | :profiles {:uberjar {:aot :all}
|
12 |
| - :dev {:plugins [[lein-shell "0.5.0"]]}} |
| 13 | + :dev {:plugins [[lein-shell "0.5.0"]]}} |
13 | 14 |
|
14 | 15 | :aliases
|
15 |
| - {"native-config" |
| 16 | + {"native" |
16 | 17 | ["shell"
|
17 |
| - ;; run the application to infer the build configuration |
18 |
| - "java" "-agentlib:native-image-agent=config-output-dir=./target/config/" |
19 |
| - "-jar" "./target/${:uberjar-name:-${:name}-${:version}-standalone.jar}"] |
20 |
| - |
21 |
| - "native" |
22 |
| - ["shell" |
23 |
| - "native-image" "--report-unsupported-elements-at-runtime" "--no-server" "--no-fallback" |
24 |
| - "-H:+PrintClassInitialization" |
25 |
| - "-H:ConfigurationFileDirectories=./target/config/" |
26 |
| - "--initialize-at-build-time" |
| 18 | + "native-image" |
| 19 | + "--no-fallback" |
| 20 | + "--report-unsupported-elements-at-runtime" |
| 21 | + "--no-server" |
27 | 22 | "--allow-incomplete-classpath"
|
| 23 | + "--initialize-at-build-time" |
| 24 | + "-H:+PrintClassInitialization" |
| 25 | + "--features=clj_easy.graal_build_time.InitClojureClasses" |
| 26 | + |
| 27 | + "-H:+UnlockExperimentalVMOptions" |
| 28 | + "-H:ConfigurationFileDirectories=graalvm-resources" |
| 29 | + |
28 | 30 | "--enable-http" "--enable-https" "--enable-all-security-services"
|
29 | 31 | "-jar" "./target/${:uberjar-name:-${:name}-${:version}-standalone.jar}"
|
30 | 32 | "-H:Name=./target/${:name}"]
|
|
0 commit comments