diff options
author | Thomas <> | 2024-02-01 13:46:53 +0100 |
---|---|---|
committer | Thomas <> | 2024-02-01 13:46:53 +0100 |
commit | e8ba9baff7536fc4565719cbc130ef81995d15bb (patch) | |
tree | a85d6be61379f26bc2242b5bf9b79a409c204535 /eaaf_core/pom.xml | |
parent | b7bd6f25a5efc31ff8314fb98aaace296d579830 (diff) | |
download | EAAF-Components-e8ba9baff7536fc4565719cbc130ef81995d15bb.tar.gz EAAF-Components-e8ba9baff7536fc4565719cbc130ef81995d15bb.tar.bz2 EAAF-Components-e8ba9baff7536fc4565719cbc130ef81995d15bb.zip |
feat(core): add Jackson Joda module
Hint: Modules will be only loaded if it is available on classpath
Diffstat (limited to 'eaaf_core/pom.xml')
-rw-r--r-- | eaaf_core/pom.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eaaf_core/pom.xml b/eaaf_core/pom.xml index 16184607..1ca6d90e 100644 --- a/eaaf_core/pom.xml +++ b/eaaf_core/pom.xml @@ -66,7 +66,12 @@ <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-parameter-names</artifactId> <scope>provided</scope> - </dependency> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.datatype</groupId> + <artifactId>jackson-datatype-joda</artifactId> + <scope>provided</scope> + </dependency> <dependency> <groupId>org.slf4j</groupId> |