-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build a multi-release jar to provide module-info for JDK 11
- Loading branch information
Showing
4 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# Contributing | ||
|
||
Feel free to fork the project and create pull requests. Please use the `develop` branch for new features, | ||
I like to keep the `master` branch stable. | ||
I like to keep the `master` branch stable. | ||
|
||
Note that JDK 11 is required to build. Older versions do not allow creating a Multi-Release JAR and | ||
newer versions do not support `--release 6`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module de.mkammerer.argon2.nolibs { | ||
exports de.mkammerer.argon2; | ||
exports de.mkammerer.argon2.jna; | ||
requires com.sun.jna; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters