@@ -83,7 +83,6 @@ under the License.
8383 </developers >
8484
8585 <properties >
86-
8786 <!-- Test -->
8887 <testng .version>7.11.0</testng .version>
8988 <!-- these are TestNG groups used for excluding / including groups of tests. See profiles section. -->
@@ -96,8 +95,6 @@ under the License.
9695 <maven .version>3.9.11</maven .version>
9796 <java .version>24</java .version>
9897 <jvm-arguments >-Xmx4g</jvm-arguments >
99- <maven .compiler.source>${java.version} </maven .compiler.source>
100- <maven .compiler.target>${java.version} </maven .compiler.target>
10198 <charset .encoding>UTF-8</charset .encoding>
10299 <project .build.sourceEncoding>${charset.encoding} </project .build.sourceEncoding>
103100 <project .build.resourceEncoding>${charset.encoding} </project .build.resourceEncoding>
@@ -156,8 +153,9 @@ under the License.
156153 <artifactId >maven-compiler-plugin</artifactId >
157154 <version >${maven-compiler-plugin.version} </version >
158155 <configuration >
156+ <release >${java.version} </release >
159157 <compilerArgs >
160- <arg ></arg >
158+ <arg ></arg > <!-- comma separated or separate args -->
161159 </compilerArgs >
162160 </configuration >
163161 </plugin >
@@ -275,6 +273,8 @@ under the License.
275273 <artifactId >maven-surefire-plugin</artifactId >
276274 <version >${maven-surefire-failsafe-plugins.version} </version >
277275 <configuration >
276+ <forkCount >1</forkCount >
277+ <reuseForks >true</reuseForks >
278278 <argLine >${jvm-arguments} </argLine >
279279 <trimStackTrace >false</trimStackTrace >
280280 <useManifestOnlyJar >false</useManifestOnlyJar >
0 commit comments