Skip to content

Commit 616fd2f

Browse files
author
TheSnoozer
committed
#557: Drop support for Java 8, Java 9 and Java 10
1 parent 8a73ae9 commit 616fd2f

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/default-tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
11-
- name: Set up JDK 8
11+
- name: Set up JDK 11
1212
uses: actions/setup-java@v2
1313
with:
1414
distribution: 'zulu'
15-
java-version: 8
15+
java-version: 11
1616
java-package: jdk
1717
- name: Cache local Maven repository
1818
uses: actions/cache@v2
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
matrix:
3232
java_allow_illegal_access: [false]
33-
java_version: ['8', '9', '10', '11', '12', '13', '14', '15']
33+
java_version: ['11', '12', '13', '14', '15']
3434
include:
3535
- java_version: '16'
3636
java_allow_illegal_access: true
@@ -64,7 +64,7 @@ jobs:
6464
needs: checkstyle
6565
strategy:
6666
matrix:
67-
java_version: ['8']
67+
java_version: ['11']
6868
maven_version: ['3.0', '3.0.5', '3.1.1', '3.2.5', '3.3.9', '3.5.4', '3.6.3', '3.8.1']
6969

7070
steps:
@@ -119,11 +119,11 @@ jobs:
119119
steps:
120120
- uses: actions/checkout@v2
121121
- run: git checkout "${GITHUB_REF:11}"
122-
- name: Set up JDK 8
122+
- name: Set up JDK 11
123123
uses: actions/setup-java@v2
124124
with:
125125
distribution: 'zulu'
126-
java-version: 8
126+
java-version: 11
127127
java-package: jdk
128128
- name: Cache local Maven repository
129129
uses: actions/cache@v2
@@ -142,11 +142,11 @@ jobs:
142142

143143
steps:
144144
- uses: actions/checkout@v2
145-
- name: Set up JDK 8
145+
- name: Set up JDK 11
146146
uses: actions/setup-java@v2
147147
with:
148148
distribution: 'zulu'
149-
java-version: 8
149+
java-version: 11
150150
java-package: jdk
151151
- name: Cache local Maven repository
152152
uses: actions/cache@v2

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
18-
<java.target>1.8</java.target>
18+
<java.target>11</java.target>
1919

2020
<jgit.version>5.12.0.202106070339-r</jgit.version>
2121
<junit.version>4.13.2</junit.version>

maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2828
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2929

30-
<java.target>1.8</java.target>
30+
<java.target>11</java.target>
3131

3232
<maven-plugin-api.version>3.0</maven-plugin-api.version>
3333
<maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4343
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4444

45-
<java.target>1.8</java.target>
45+
<java.target>11</java.target>
4646
</properties>
4747

4848
<modules>

0 commit comments

Comments
 (0)