diff --git a/pom.xml b/pom.xml index 6bbcfee259957ae35e1a639f737f3496076f01f6..9785bd6f5ee62598d4237ca92fb5babfa68b9bd5 100644 --- a/pom.xml +++ b/pom.xml @@ -16,7 +16,7 @@ <properties> <!-- build versions --> - <cxf.version>4.0.3</cxf.version> + <cxf.version>4.0.5</cxf.version> <cxf-xjc.version>4.0.0</cxf-xjc.version> <jsr305.version>3.0.2</jsr305.version> @@ -96,25 +96,25 @@ <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> + <!-- Test --> <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-core</artifactId> - <scope>test</scope> + <groupId>org.apache.commons</groupId> + <artifactId>commons-collections4</artifactId> </dependency> <dependency> - <groupId>org.yaml</groupId> - <artifactId>snakeyaml</artifactId> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-collections4</artifactId> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-jdk18on</artifactId> + <scope>test</scope> </dependency> <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-junit-jupiter</artifactId> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk18on</artifactId> <scope>test</scope> </dependency> <dependency> @@ -123,10 +123,21 @@ <scope>test</scope> </dependency> <dependency> - <groupId>org.assertj</groupId> - <artifactId>assertj-core</artifactId> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-junit-jupiter</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.yaml</groupId> + <artifactId>snakeyaml</artifactId> + <scope>test</scope> + </dependency> + </dependencies> <build>