Closed starksm64 closed 2 years ago
The current tck/pom.xml file has the following maven-surefire-plugin configuration:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> <configuration> <trimStackTrace>false</trimStackTrace> <argLine>-XX:+ShowCodeDetailsInExceptionMessages</argLine> </configuration> </plugin>
This requires Java SE 14+ to build as this option was introduced in SE 14. The build should only require Java SE 11.
Good point, that one should be removed (or the not fail an unknown options added, but removing is easier).
The current tck/pom.xml file has the following maven-surefire-plugin configuration:
This requires Java SE 14+ to build as this option was introduced in SE 14. The build should only require Java SE 11.