-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
105 changed files
with
2,204 additions
and
1,821 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,24 @@ | ||
import org.cryptomator.cryptofs.CryptoFileSystemProvider; | ||
|
||
import java.nio.file.spi.FileSystemProvider; | ||
|
||
module org.cryptomator.cryptofs { | ||
requires transitive org.cryptomator.cryptolib; | ||
requires com.google.common; | ||
requires org.slf4j; | ||
requires dagger; | ||
requires com.auth0.jwt; | ||
|
||
// filename-based module required by dagger | ||
// we will probably need to live with this for a while: | ||
// https://github.com/javax-inject/javax-inject/issues/33 | ||
// May be provided by another lib during runtime | ||
requires static javax.inject; | ||
|
||
exports org.cryptomator.cryptofs; | ||
exports org.cryptomator.cryptofs.common; | ||
exports org.cryptomator.cryptofs.migration; | ||
exports org.cryptomator.cryptofs.migration.api; | ||
|
||
provides FileSystemProvider with CryptoFileSystemProvider; | ||
} |
Oops, something went wrong.