Tibor17 commented on code in PR #523:
URL: https://github.com/apache/maven-surefire/pull/523#discussion_r855005637
##########
surefire-its/src/test/resources/argLine-parameter/pom.xml:
##########
@@ -52,7 +52,14 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>once</forkMode>
- <argLine>-Dfoo.property="foo foo/foo/bar/1.0" -Dbar.property="bar
bar/foo/bar/2.0"</argLine>
+ <argLine>
+ <!--
+ These lines must be tab-indented, see SUREFIRE-2063;
+ regular tab characters could easily be reformatted by an IDE,
+ so we're using XML entities here.
+ -->
+ -Dfoo.property="foo foo/foo/bar/1.0";	-Dbar.property="bar
bar/foo/bar/2.0"
Review Comment:
@mthmulders
Why the special character `	` starts with semicollon, like this `;	`?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]