Skip to content

Commit 78014f3

Browse files
committed
Introduce :launchpad/jdk-opts
Make sure we populate the internal :java-args from the above-mentioned key, therefore allowing `deps.local.edn` to contain things that differ from `deps.edn`. Note that there is naming discrepancy as this patch sticks with the official key - `:jdk-opts` rather than the internal key name.
1 parent 3d0cabf commit 78014f3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/lambdaisland/launchpad.clj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,9 @@
251251
(update :main-opts (fnil into []) (concat
252252
(:launchpad/main-opts deps-system)
253253
(:launchpad/main-opts deps-local)))
254+
(update :java-args (fnil into []) (concat
255+
(:launchpad/jdk-opts deps-system)
256+
(:launchpad/jdk-opts deps-local)))
254257
(merge
255258
(:launchpad/options deps-system)
256259
(:launchpad/options deps-local))

0 commit comments

Comments
 (0)