@@ -196,7 +196,7 @@ under the License.
196196 <artifactId >maven-compiler-plugin</artifactId >
197197 <version >${maven-compiler-plugin.version} </version >
198198 <configuration >
199- <fork >true</fork >
199+ <fork >true</fork > <!-- required if Maven is using a different JVM -->
200200 </configuration >
201201 </plugin >
202202
@@ -240,6 +240,12 @@ under the License.
240240 </executions >
241241 </plugin >
242242
243+ <plugin >
244+ <groupId >org.apache.maven.plugins</groupId >
245+ <artifactId >maven-install-plugin</artifactId >
246+ <version >${maven-install-plugin.version} </version >
247+ </plugin >
248+
243249 <plugin >
244250 <groupId >org.apache.maven.plugins</groupId >
245251 <artifactId >maven-jar-plugin</artifactId >
@@ -270,8 +276,8 @@ under the License.
270276 <outputDirectory >${project.reporting.outputDirectory} </outputDirectory >
271277 <docfilessubdirs >true</docfilessubdirs >
272278 <show >public</show >
273- <doclint >all,-missing </doclint >
274- <additionalJOptions >
279+ <doclint >none </doclint > <!-- use Checkstyle -- >
280+ <additionalJOptions >
275281 <additionalJOption >-J${jvm.mem} </additionalJOption >
276282 <additionalJOption >-J${jvm.locale.language} </additionalJOption >
277283 <additionalJOption >-J${jvm.locale.country} </additionalJOption >
@@ -322,18 +328,15 @@ under the License.
322328 <version >${maven-surefire-failsafe-plugins.version} </version >
323329 <configuration >
324330 <argLine >@{argLine} @{jvm.args}</argLine >
325- <jdkToolchain >
326- <version >${java.version} </version >
327- </jdkToolchain >
328331 <trimStackTrace >false</trimStackTrace >
329332 <useManifestOnlyJar >false</useManifestOnlyJar >
330333 <redirectTestOutputToFile >false</redirectTestOutputToFile >
331334 <reportsDirectory >${project.build.directory} /test-output</reportsDirectory >
332335 <suiteXmlFiles >
333336 <suiteXmlFile >src/test/resources/testng.xml</suiteXmlFile >
334337 </suiteXmlFiles >
335- <perCoreThreadCount >false</perCoreThreadCount >
336338 <excludedGroups >${testng.generate-java-files} ,${testng.check-cpp-files} ,${testng.check-go-files} ,${testng.check-cpp-historical-files} </excludedGroups >
339+ <perCoreThreadCount >false</perCoreThreadCount >
337340 </configuration >
338341 </plugin >
339342
0 commit comments