-
Notifications
You must be signed in to change notification settings - Fork 139
Java Development Guide
Endi S. Dewata edited this page Dec 1, 2022
·
7 revisions
Java source and target versions are hard-coded in cmake/Modules/Java.cmake:
COMMAND ${Java_JAVAC_EXECUTABLE} ... -source 17 -target 17 ...
Java release version is hard-coded in pom.xml:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>17</release> </configuration> </plugin>
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |