You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Windows batch file pipe symbol escaping in JvmConfigParser
The JvmConfigParser.java was not properly escaping pipe symbols for Windows
batch file processing. In Windows batch files, pipe symbols are command
separators that are processed before quotes, so they need to be escaped
with the caret (^) character.
This change ensures that pipe symbols in jvm.config files are properly
escaped as ^| when processed by the Windows batch file, preventing them
from being interpreted as command separators.
Also fixed compilation error in integration test by replacing constant
reference with string literal for maven.consumer.pom.flatten property.
0 commit comments