File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed 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
+ ## Unreleased
9
+ ### Changed
10
+ - Add ` Automatic-Module-Name ` manifest entry so that library can be used
11
+ nicely in Java 9 modules
12
+
8
13
## [ 0.7.0] - 2017-08-31
9
14
### Changed
10
15
- Don't autolink if authority is only "end" characters, e.g. like ` http://. ` or
Original file line number Diff line number Diff line change 48
48
<target >7</target >
49
49
</configuration >
50
50
</plugin >
51
+ <plugin >
52
+ <groupId >org.apache.maven.plugins</groupId >
53
+ <artifactId >maven-jar-plugin</artifactId >
54
+ <version >3.0.2</version >
55
+ <configuration >
56
+ <archive >
57
+ <manifestEntries >
58
+ <Automatic-Module-Name >org.nibor.autolink</Automatic-Module-Name >
59
+ </manifestEntries >
60
+ </archive >
61
+ </configuration >
62
+ </plugin >
51
63
<plugin >
52
64
<groupId >com.github.siom79.japicmp</groupId >
53
65
<artifactId >japicmp-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments