File tree Expand file tree Collapse file tree 5 files changed +15
-18
lines changed Expand file tree Collapse file tree 5 files changed +15
-18
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 : [1.8 , 11, 17]
12
+ java : [9 , 11, 17]
13
13
steps :
14
14
- name : Checkout sources
15
15
uses : actions/checkout@v2
31
31
- name : Set up JDK
32
32
uses : actions/setup-java@v1
33
33
with :
34
- java-version : 11
34
+ java-version : 17
35
35
36
36
- name : Build with coverage
37
37
run : mvn -B -Pcoverage clean test jacoco:report
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ 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
+ ## [ 0.11.0] - 2023-02-27
9
+ ### Changed
10
+ - Modular JAR: Require at least Java 9 and add a module descriptor (module-info),
11
+ remove no longer necessary ` Automatic-Module-Name ` header
12
+
8
13
## [ 0.10.1] - 2022-12-23
9
14
### Changed
10
15
- Bump maven plugin versions
@@ -76,6 +81,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
76
81
- Initial release!
77
82
78
83
84
+ [ 0.11.0 ] : https://github.com/robinst/autolink-java/compare/autolink-0.10.1...autolink-0.11.0
79
85
[ 0.10.1 ] : https://github.com/robinst/autolink-java/compare/autolink-0.10.0...autolink-0.10.1
80
86
[ 0.10.0 ] : https://github.com/robinst/autolink-java/compare/autolink-0.9.0...autolink-0.10.0
81
87
[ 0.9.0 ] : https://github.com/robinst/autolink-java/compare/autolink-0.8.0...autolink-0.9.0
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 8 or later. It works on Android
35
+ This library is supported on Java 9 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 40
40
<artifactId >maven-compiler-plugin</artifactId >
41
41
<version >3.10.1</version >
42
42
<configuration >
43
- <source >7</source >
44
- <target >7</target >
45
- </configuration >
46
- </plugin >
47
- <plugin >
48
- <groupId >org.apache.maven.plugins</groupId >
49
- <artifactId >maven-jar-plugin</artifactId >
50
- <version >3.3.0</version >
51
- <configuration >
52
- <archive >
53
- <manifestEntries >
54
- <Automatic-Module-Name >org.nibor.autolink</Automatic-Module-Name >
55
- </manifestEntries >
56
- </archive >
43
+ <source >9</source >
44
+ <target >9</target >
57
45
</configuration >
58
46
</plugin >
59
47
<plugin >
140
128
<plugin >
141
129
<groupId >org.jacoco</groupId >
142
130
<artifactId >jacoco-maven-plugin</artifactId >
143
- <version >0.8.2 </version >
131
+ <version >0.8.8 </version >
144
132
<executions >
145
133
<execution >
146
134
<id >prepare-agent</id >
Original file line number Diff line number Diff line change
1
+ module org .nibor .autolink {
2
+ exports org .nibor .autolink ;
3
+ }
You can’t perform that action at this time.
0 commit comments