File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,12 @@ requires org.cryptomator.siv;
62
62
63
63
Because BouncyCastle classes are shaded, this library only depends on ` java.base ` .
64
64
65
+ ## Building
66
+
67
+ This is a Maven project. To build it, run ` mvn clean install ` .
68
+
69
+ Requires JDK 9+ at build time due to JPMS support.
70
+
65
71
## License
66
72
Distributed under the MIT X Consortium license. See the LICENSE file for more info.
67
73
Original file line number Diff line number Diff line change 81
81
82
82
<build >
83
83
<plugins >
84
+ <plugin >
85
+ <groupId >org.apache.maven.plugins</groupId >
86
+ <artifactId >maven-enforcer-plugin</artifactId >
87
+ <version >3.0.0-M2</version >
88
+ <executions >
89
+ <execution >
90
+ <id >enforce-java</id >
91
+ <goals >
92
+ <goal >enforce</goal >
93
+ </goals >
94
+ <configuration >
95
+ <rules >
96
+ <requireJavaVersion >
97
+ <message >You need at least JDK 9 to build this project.</message >
98
+ <version >[9,)</version >
99
+ </requireJavaVersion >
100
+ </rules >
101
+ </configuration >
102
+ </execution >
103
+ </executions >
104
+ </plugin >
84
105
<plugin >
85
106
<artifactId >maven-compiler-plugin</artifactId >
86
107
<version >3.8.1</version >
You can’t perform that action at this time.
0 commit comments