diff options
author | Thomas <> | 2022-10-21 14:32:29 +0200 |
---|---|---|
committer | Thomas <> | 2022-10-21 14:32:29 +0200 |
commit | 2e92a85fac99d5f2366197bbd9d24436efa21c22 (patch) | |
tree | ee9cc7a35a0a7a04041fe53f7cccfcb3ae07efad /modules | |
parent | 7798a53d11d5a57ca8abde0ab24d9c42b8bb4d9b (diff) | |
download | National_eIDAS_Gateway-2e92a85fac99d5f2366197bbd9d24436efa21c22.tar.gz National_eIDAS_Gateway-2e92a85fac99d5f2366197bbd9d24436efa21c22.tar.bz2 National_eIDAS_Gateway-2e92a85fac99d5f2366197bbd9d24436efa21c22.zip |
feat(connector): add JSON based statistic logger
Diffstat (limited to 'modules')
-rw-r--r-- | modules/core_common_webapp/pom.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/core_common_webapp/pom.xml b/modules/core_common_webapp/pom.xml index 1b11ad66..c8e9fe6d 100644 --- a/modules/core_common_webapp/pom.xml +++ b/modules/core_common_webapp/pom.xml @@ -40,6 +40,14 @@ <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf-spring5</artifactId> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.datatype</groupId> + <artifactId>jackson-datatype-jsr310</artifactId> + </dependency> <dependency> <groupId>javax.servlet</groupId> |