11<?xml version =' 1.0' encoding =' utf-8' ?>
2- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
35
46 <modelVersion >4.0.0</modelVersion >
57
2729 <surefire .logLevel>info</surefire .logLevel>
2830
2931 <!--
30- Use the argLine property to define the arguments for the JVMs that are forked by the surefire plugin.
32+ Use the argLine property to define the arguments for the JVMs that are forked by the surefire
33+ plugin.
3134 This avoids the need to use late property evaluation for configuring the jacoco plugin.
3235 Relying on late evaluation of properties such as @{argLine} can result in issues with certain IDEs.
3336
3437 For more details, visit:
3538 https://www.eclemma.org/jacoco/trunk/doc/prepare-agent-mojo.html
3639 -->
37- <argLine >-Xmx${surefire.maxMemorySize} -Dorg.slf4j.simpleLogger.defaultLogLevel=${surefire.logLevel}</argLine >
40+ <argLine >-Xmx${surefire.maxMemorySize}
41+ -Dorg.slf4j.simpleLogger.defaultLogLevel=${surefire.logLevel}</argLine >
3842
3943 <jacoco .executionDataFile>${project.build.directory} /coverage-reports/jacoco.exec</jacoco .executionDataFile>
4044 <jacoco .includes>*</jacoco .includes>
8387 <dependency >
8488 <groupId >ch.qos.logback</groupId >
8589 <artifactId >logback-classic</artifactId >
90+ <version >1.2.13</version >
8691 </dependency >
8792
8893 <dependency >
179184 <groups >${surefire.groups} </groups >
180185 <excludedGroups >${surefire.excludedGroups} </excludedGroups >
181186 <systemPropertyVariables >
182- <surefire .forkDir>${project.build.directory} /surefire-fork/${surefire.forkNumber} /</surefire .forkDir>
187+ <surefire .forkDir>
188+ ${project.build.directory} /surefire-fork/${surefire.forkNumber} /</surefire .forkDir>
183189 </systemPropertyVariables >
184190 </configuration >
185191 </plugin >
186192 </plugins >
187193 </build >
188- </project >
194+ </project >
0 commit comments