File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/java/com/formkiq/gradle/internal Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ plugins {
1010}
1111
1212group ' com.formkiq.gradle'
13- version ' 1.5.0 '
13+ version ' 1.5.1 '
1414
1515java {
1616 toolchain {
Original file line number Diff line number Diff line change @@ -94,7 +94,8 @@ private String buildClassPathString(final Project project) {
9494 files .add (Path .of (project .getBuildDir ().getAbsolutePath (), GRAALVM_JAVA_MAIN ).toFile ());
9595 addClasspaths (files );
9696
97- return files .stream ().map (File ::getAbsolutePath ).map (s -> formatToUnix (s ))
97+ return files .stream ().map (File ::getAbsolutePath )
98+ .map (s -> this .extension .getDockerImage () != null ? formatToUnix (s ) : s )
9899 .collect (Collectors .joining (OperatingSystem .current ().isWindows () ? ";" : ":" ));
99100 }
100101
You can’t perform that action at this time.
0 commit comments