File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
plugins/project/src/main/kotlin/tasks Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11[versions ]
22java = " 26"
33kotlin = " 2.2.20-RC2"
4- kotlin-ksp = " 2.2.20-RC -2.0.2"
4+ kotlin-ksp = " 2.2.20-RC2 -2.0.2"
55kotlin-jvmtarget = " 21"
66kotlin-dsl-jvmtarget = " 21"
77kotlin-api-version = " 2.3"
@@ -181,7 +181,7 @@ batik = "1.19"
181181twelvemonkeys = " 3.12.0"
182182okapibarcode = " 0.5.2"
183183chasm = " 1.0.0"
184- cel = " 0.10.1 "
184+ cel = " 0.11.0 "
185185kfswatch = " 1.3.1"
186186kmp-process = " 0.3.2"
187187kmbed = " 1.8.4"
Original file line number Diff line number Diff line change @@ -38,17 +38,17 @@ abstract class ReallyExecJar : DefaultTask() {
3838
3939 @TaskAction
4040 fun execute () {
41- // Replace the tmp path with env variable for portability.
41+ // Replace the tmp path with the env variable for portability.
4242 val shellStub =
4343 javaClass
4444 .getResourceAsStream(" /exec-jar-stub.sh" )
4545 ?.readBytes()
4646 ?.decodeToString()
4747 ?.replace(
48- oldValue = """ "${ ' $ ' } JAVA_OPTS"""" ,
48+ oldValue = $$ """ "$JAVA_OPTS """" ,
4949 newValue = javaOpts.get().joinToString(" " ),
5050 )
51- ?.replace(tmp, " ${ ' $ ' } TMPDIR/" )
51+ ?.replace(tmp, $$ " $ TMPDIR /" )
5252 ? : throw GradleException (" Can't find executable shell stub!" )
5353 logger.debug(" Exec jar shell stub: $shellStub " )
5454
You can’t perform that action at this time.
0 commit comments