Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions json-cache-jackson/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/**
* Jackson integration module.
*/
module json.cache.jackson {
requires transitive json.cache.core;
requires transitive com.fasterxml.jackson.databind;

exports pl.allegro.tech.jsoncache.jackson;
exports pl.allegro.tech.jsoncache.jackson.keybuilder.strategy;
}
8 changes: 8 additions & 0 deletions json-cache-test/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* Shared test support module.
*/
module json.cache.test {
requires transitive json.cache.core;

exports pl.allegro.tech.jsoncache.support;
}