File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 42
42
<configuration >
43
43
<release >7</release >
44
44
</configuration >
45
+ <executions >
46
+ <execution >
47
+ <id >java9</id >
48
+ <phase >compile</phase >
49
+ <goals >
50
+ <goal >compile</goal >
51
+ </goals >
52
+ <configuration >
53
+ <release >9</release >
54
+ <compileSourceRoots >
55
+ <compileSourceRoot >${project.basedir} /src/main/java9</compileSourceRoot >
56
+ </compileSourceRoots >
57
+ <multiReleaseOutput >true</multiReleaseOutput >
58
+ </configuration >
59
+ </execution >
60
+ </executions >
45
61
</plugin >
46
62
<plugin >
47
63
<groupId >org.apache.maven.plugins</groupId >
62
78
<groupId >org.apache.maven.plugins</groupId >
63
79
<artifactId >maven-surefire-plugin</artifactId >
64
80
</plugin >
81
+ <plugin >
82
+ <groupId >org.apache.maven.plugins</groupId >
83
+ <artifactId >maven-jar-plugin</artifactId >
84
+ <configuration >
85
+ <archive >
86
+ <manifestEntries >
87
+ <Multi-Release >true</Multi-Release >
88
+ <Sealed >true</Sealed >
89
+ </manifestEntries >
90
+ </archive >
91
+ </configuration >
92
+ </plugin >
65
93
<plugin >
66
94
<groupId >org.jacoco</groupId >
67
95
<artifactId >jacoco-maven-plugin</artifactId >
Original file line number Diff line number Diff line change
1
+ module at .favre .lib .hkdf {
2
+ exports at .favre .lib .crypto ; // FIXME split package with other libs, such as at.favre.lib:bcrypt
3
+ }
You can’t perform that action at this time.
0 commit comments