File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,15 @@ jobs:
12
12
build :
13
13
strategy :
14
14
matrix :
15
- java : [ '8', '11', '15 ' ]
16
- os : [ 'ubuntu-latest' ]
15
+ java : [ '8', '17 ' ]
16
+ os : [ 'ubuntu-latest', 'windows-latest' ]
17
17
runs-on : ${{ matrix.os }}
18
18
steps :
19
19
- uses : actions/checkout@v2
20
20
- name : Set up JDK
21
- uses : actions/setup-java@v1
21
+ uses : actions/setup-java@v2
22
22
with :
23
+ distribution : ' temurin'
23
24
java-version : ${{ matrix.java }}
24
25
- name : print Java version
25
26
run : java -version
Original file line number Diff line number Diff line change @@ -187,8 +187,8 @@ under the License.
187
187
<artifactId >maven-compiler-plugin</artifactId >
188
188
<version >3.8.0</version >
189
189
<configuration >
190
- <source >1.6 </source >
191
- <target >1.6 </target >
190
+ <source >1.8 </source >
191
+ <target >1.8 </target >
192
192
</configuration >
193
193
</plugin >
194
194
@@ -310,7 +310,7 @@ under the License.
310
310
<excludes >
311
311
<exclude >org/scoverage/plugin/HelpMojo.java</exclude >
312
312
</excludes >
313
- <targetJdk >1.6 </targetJdk >
313
+ <targetJdk >1.8 </targetJdk >
314
314
</configuration >
315
315
</plugin >
316
316
You can’t perform that action at this time.
0 commit comments