Skip to content

Commit 4b3d5a1

Browse files
committed
changed profile and toolchain
Signed-off-by: jarebudev <[email protected]>
1 parent 206dfc4 commit 4b3d5a1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/pullrequest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- java: 17
1515
profile: codequality
1616
- java: 11
17-
profile: java8
17+
profile: java11
1818
name: with Java ${{ matrix.build.java }}
1919
runs-on: ${{ matrix.os}}
2020
steps:

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -646,14 +646,14 @@
646646
</plugins>
647647
</build>
648648
</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) -->
651651
<profile>
652-
<id>java8</id>
652+
<id>java11</id>
653653
<!-- 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 -->
654654
<!--<modules><module></module></modules>-->
655655
<properties>
656-
<toolchain.jdk.version>(1.8,9)</toolchain.jdk.version>
656+
<toolchain.jdk.version>(11)</toolchain.jdk.version>
657657
<skip.tests>true</skip.tests>
658658
</properties>
659659

0 commit comments

Comments
 (0)