|
10 | 10 | <properties>
|
11 | 11 | <toolchain.jdk.version>[17,)</toolchain.jdk.version>
|
12 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
13 |
| - <maven.compiler.source>1.8</maven.compiler.source> |
| 13 | + <maven.compiler.source>11</maven.compiler.source> |
14 | 14 | <maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
|
15 | 15 | <junit.jupiter.version>5.12.2</junit.jupiter.version>
|
16 | 16 | <io.cucumber.version>7.22.1</io.cucumber.version>
|
|
20 | 20 | <module-name>${project.groupId}.${project.artifactId}</module-name>
|
21 | 21 | <skip.tests>false</skip.tests>
|
22 | 22 | <!-- this will throw an error if we use wrong apis -->
|
23 |
| - <maven.compiler.release>8</maven.compiler.release> |
| 23 | + <maven.compiler.release>11</maven.compiler.release> |
24 | 24 | </properties>
|
25 | 25 |
|
26 | 26 | <name>OpenFeature Java SDK</name>
|
|
646 | 646 | </plugins>
|
647 | 647 | </build>
|
648 | 648 | </profile>
|
649 |
| - <!-- profile for running tests under java 8 (used mostly in CI) --> |
650 |
| - <!-- selected automatically by JDK activeation (see https://maven.apache.org/guides/introduction/introduction-to-profiles.html#implicit-profile-activation) --> |
| 649 | + <!-- profile for running tests under java 11 (used mostly in CI) --> |
| 650 | + <!-- selected automatically by JDK activation (see https://maven.apache.org/guides/introduction/introduction-to-profiles.html#implicit-profile-activation) --> |
651 | 651 | <profile>
|
652 |
| - <id>java8</id> |
| 652 | + <id>java11</id> |
653 | 653 | <!-- with the next block we can define a set of sdks which still support java 8, if any of the sdks is not supporting java 8 anymore -->
|
654 | 654 | <!--<modules><module></module></modules>-->
|
655 | 655 | <properties>
|
656 |
| - <toolchain.jdk.version>(1.8,9)</toolchain.jdk.version> |
| 656 | + <toolchain.jdk.version>[11,)</toolchain.jdk.version> |
657 | 657 | <skip.tests>true</skip.tests>
|
658 | 658 | </properties>
|
659 | 659 |
|
|
0 commit comments