Skip to content

Commit 0e6b96f

Browse files
committed
move some stuff around in project.clj
1 parent a24f032 commit 0e6b96f

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

project.clj

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(defproject mobdap "0.1.4"
2-
:description "Debug Adapter for MobDap"
2+
:description "Debug adapter implementation for Lua / MobDap"
33
:url "https://github.com/atomicptr/mobdap"
44
:license {:name "GPL-3.0-or-later" :url "https://www.gnu.org/licenses/gpl-3.0.en.html"}
55
:dependencies [[cheshire/cheshire "6.0.0"]
@@ -15,11 +15,6 @@
1515
:omit-source true
1616
:source-paths ["src"]
1717
:target-path "target/%s"
18-
:native-image {:opts ["-H:ReflectionConfigurationFiles=resources/reflection.json"
19-
"--verbose"
20-
"--no-fallback"
21-
"--parallelism=32"
22-
"--initialize-at-build-time"]}
2318
:profiles {:default
2419
{:main ^:skip-aot mobdap.main
2520
:set-version {:updates [{:path "src/mobdap/main.clj"
@@ -35,9 +30,16 @@
3530
{:dependencies [[nubank/matcher-combinators "3.9.1"]]}
3631

3732
:uberjar
38-
{:aot :all
33+
{:main mobdap.main
34+
:aot :all
3935
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}
4036

4137
:native-image
42-
{:aot :all
43-
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})
38+
{:main mobdap.main
39+
:aot :all
40+
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]
41+
:native-image {:opts ["-H:ReflectionConfigurationFiles=resources/reflection.json"
42+
"--verbose"
43+
"--no-fallback"
44+
"--parallelism=32"
45+
"--initialize-at-build-time"]}}})

0 commit comments

Comments
 (0)