diff --git a/partition-core/pom.xml b/partition-core/pom.xml index a6a6e93790c4a1402648e93ab25adf5e2d578556..ce777956c17e6013c73b5a2f08cd6d403672f251 100644 --- a/partition-core/pom.xml +++ b/partition-core/pom.xml @@ -39,8 +39,19 @@ <cobertura_maven_plugin_version>2.7</cobertura_maven_plugin_version> <maven_surefire_plugin_version>3.0.0-M4</maven_surefire_plugin_version> <maven_failsafe_plugin_version>3.0.0-M4</maven_failsafe_plugin_version> + <jackson-databind.version>2.13.2.2</jackson-databind.version> </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>${jackson-databind.version}</version> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <dependency> <groupId>org.projectlombok</groupId> diff --git a/provider/partition-aws/pom.xml b/provider/partition-aws/pom.xml index 332126930ab93beb9dcfbc9bf0ada769ee03f908..a75323e99b0c0fd280d06a555eef339a917b1b8d 100644 --- a/provider/partition-aws/pom.xml +++ b/provider/partition-aws/pom.xml @@ -44,6 +44,11 @@ <type>pom</type> <scope>import</scope> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.13.2.2</version> + </dependency> </dependencies> </dependencyManagement> diff --git a/provider/partition-azure/pom.xml b/provider/partition-azure/pom.xml index b2ddd1987b0d208f0270ea02e64f9511e626e2bb..1f6bec121142c09e9bd4028050f53da554ba2d2f 100644 --- a/provider/partition-azure/pom.xml +++ b/provider/partition-azure/pom.xml @@ -55,6 +55,11 @@ <artifactId>log4j-jul</artifactId> <version>${log4j.version}</version> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.13.2.2</version> + </dependency> </dependencies> </dependencyManagement> diff --git a/provider/partition-gcp/pom.xml b/provider/partition-gcp/pom.xml index 6a5098a331ec0a0b1bc3eb7b8aea752f44c37293..1f06c4f6b4e07b032e1f597a8997007255f173ea 100644 --- a/provider/partition-gcp/pom.xml +++ b/provider/partition-gcp/pom.xml @@ -62,19 +62,19 @@ <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> - <version>2.12.0</version> + <version>2.13.2.2</version> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> - <version>2.12.0</version> + <version>2.13.2</version> </dependency> <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> - <version>2.12.0</version> + <version>2.13.2</version> </dependency> <!-- Testing packages --> diff --git a/provider/partition-ibm/pom.xml b/provider/partition-ibm/pom.xml index d7be3ca253140422391f47e50b936360743c8c9b..207b469238ca0e7b732e7602f1a5d0bd31c3df66 100644 --- a/provider/partition-ibm/pom.xml +++ b/provider/partition-ibm/pom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - + --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> @@ -22,6 +22,16 @@ <version.keycloak>9.0.2</version.keycloak> </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.13.2.2</version> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <!-- Internal packages --> <dependency> @@ -113,8 +123,8 @@ <artifactId>spring-security-test</artifactId> <scope>test</scope> </dependency> - - + + <!-- Keycloak --> <!-- <dependency> <groupId>org.keycloak</groupId> @@ -136,8 +146,8 @@ <artifactId>keycloak-admin-client</artifactId> <version>${version.keycloak}</version> </dependency> --> - - + + </dependencies> <build> diff --git a/provider/partition-reference/pom.xml b/provider/partition-reference/pom.xml index 024d798d96ba4ed68dbaa21e5227c661ad3ef5af..338bb3d94029a390c47553ce2a2ca2caa8a7c262 100644 --- a/provider/partition-reference/pom.xml +++ b/provider/partition-reference/pom.xml @@ -15,6 +15,16 @@ <version>0.15.0-SNAPSHOT</version> <packaging>jar</packaging> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.13.2.2</version> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <!-- Internal packages --> <dependency> @@ -121,4 +131,4 @@ </plugin> </plugins> </build> -</project> \ No newline at end of file +</project>