diff options
author | Thomas <> | 2023-05-15 08:36:30 +0200 |
---|---|---|
committer | Thomas <> | 2023-05-15 08:36:30 +0200 |
commit | 5865c9e49fb399c7690ed87925ba7b8ad5d98f13 (patch) | |
tree | a37acda465cab14f290f27127045cb1518e1b0ce /eaaf_core_utils/pom.xml | |
parent | bfeebfeb693f1f2ef0d2f6abb34bdf0aeffa3af4 (diff) | |
download | EAAF-Components-5865c9e49fb399c7690ed87925ba7b8ad5d98f13.tar.gz EAAF-Components-5865c9e49fb399c7690ed87925ba7b8ad5d98f13.tar.bz2 EAAF-Components-5865c9e49fb399c7690ed87925ba7b8ad5d98f13.zip |
refact(core): change process-data holder-implementation to use Jackson serialization for storage
Diffstat (limited to 'eaaf_core_utils/pom.xml')
-rw-r--r-- | eaaf_core_utils/pom.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/eaaf_core_utils/pom.xml b/eaaf_core_utils/pom.xml index d6743c8a..f8a39521 100644 --- a/eaaf_core_utils/pom.xml +++ b/eaaf_core_utils/pom.xml @@ -80,6 +80,21 @@ <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> + + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + </dependency> <dependency> <groupId>org.bitbucket.b_c</groupId> |