-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated module-info and replaced moditect-maven-plugin
- Loading branch information
1 parent
47a6c2c
commit 2d696b4
Showing
2 changed files
with
37 additions
and
43 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
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,19 @@ | ||
module org.cryptomator.cryptolib { | ||
requires static org.bouncycastle.provider; // will be shaded | ||
requires static org.bouncycastle.pkix; // will be shaded | ||
requires jdk.crypto.ec; // required at runtime for ECC | ||
requires org.cryptomator.siv; | ||
requires com.google.gson; | ||
requires transitive com.google.common; | ||
requires org.slf4j; | ||
|
||
exports org.cryptomator.cryptolib.api; | ||
exports org.cryptomator.cryptolib.common; | ||
|
||
opens org.cryptomator.cryptolib.common to com.google.gson; | ||
|
||
uses org.cryptomator.cryptolib.api.CryptorProvider; | ||
|
||
provides org.cryptomator.cryptolib.api.CryptorProvider | ||
with org.cryptomator.cryptolib.v1.CryptorProviderImpl, org.cryptomator.cryptolib.v2.CryptorProviderImpl; | ||
} |