File tree 4 files changed +12
-8
lines changed
4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
strategy :
11
11
matrix :
12
- java : [9, 11, 17]
12
+ java : [11, 17, 21 ]
13
13
steps :
14
14
- name : Checkout sources
15
15
uses : actions/checkout@v2
16
16
17
17
- name : Set up JDK
18
- uses : actions/setup-java@v1
18
+ uses : actions/setup-java@v4
19
19
with :
20
20
java-version : ${{ matrix.java }}
21
+ distribution : ' zulu'
21
22
22
23
- name : Build
23
24
run : mvn -B package
29
30
uses : actions/checkout@v2
30
31
31
32
- name : Set up JDK
32
- uses : actions/setup-java@v1
33
+ uses : actions/setup-java@v4
33
34
with :
34
- java-version : 17
35
+ java-version : 21
36
+ distribution : ' zulu'
35
37
36
38
- name : Build with coverage
37
39
run : mvn -B -Pcoverage clean test jacoco:report
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ Unreleased]
9
+ - Require at least Java 11
10
+
8
11
## [ 0.11.0] - 2023-02-27
9
12
### Changed
10
13
- Modular JAR: Require at least Java 9 and add a module descriptor (module-info),
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Thanks to [Rinku](https://github.com/vmg/rinku) for the inspiration.
32
32
Usage
33
33
-----
34
34
35
- This library is supported on Java 9 or later. It works on Android
35
+ This library is supported on Java 11 or later. It works on Android
36
36
(minimum API level 19). It has no external dependencies.
37
37
38
38
Maven coordinates
Original file line number Diff line number Diff line change 38
38
<plugin >
39
39
<groupId >org.apache.maven.plugins</groupId >
40
40
<artifactId >maven-compiler-plugin</artifactId >
41
- <version >3.10 .1</version >
41
+ <version >3.12 .1</version >
42
42
<configuration >
43
- <source >9</source >
44
- <target >9</target >
43
+ <release >11</release >
45
44
</configuration >
46
45
</plugin >
47
46
<plugin >
You can’t perform that action at this time.
0 commit comments