We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc89a5 commit bd4d336Copy full SHA for bd4d336
src/main/java/dev/dashaun/shell/initializr/plusplus/models/Plugins.java
@@ -171,8 +171,12 @@ public static Plugin zuluBuilder() {
171
image.addChild(buildpacks);
172
173
Xpp3Dom env = new Xpp3Dom("env");
174
+ Xpp3Dom xmlSpace = new Xpp3Dom("BPE_DELIM_JAVA_TOOL_OPTIONS");
175
+ xmlSpace.setAttribute("xml:space", "preserve");
176
+ xmlSpace.setValue(" ");
177
Xpp3Dom javaOptions = new Xpp3Dom("BPE_APPEND_JAVA_TOOL_OPTIONS");
- javaOptions.setValue(" -Xlog:gc:gc.log");
178
+ javaOptions.setValue("-Xlog:gc:gc.log");
179
+ env.addChild(xmlSpace);
180
env.addChild(javaOptions);
181
image.addChild(env);
182
0 commit comments