diff options
Diffstat (limited to 'certServiceClient/pom.xml')
-rw-r--r-- | certServiceClient/pom.xml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/certServiceClient/pom.xml b/certServiceClient/pom.xml index c6a17755..f092990a 100644 --- a/certServiceClient/pom.xml +++ b/certServiceClient/pom.xml @@ -58,7 +58,7 @@ <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> - <mainClass>org.onap.aaf.certservice.client.CertServiceClientApp</mainClass> + <mainClass>org.onap.aaf.certservice.client.MainApp</mainClass> </transformer> </transformers> </configuration> @@ -131,12 +131,12 @@ <dependencies> <dependency> - <groupId>org.assertj</groupId> - <artifactId>assertj-core</artifactId> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk15on</artifactId> </dependency> <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> @@ -155,6 +155,10 @@ <artifactId>mockito-junit-jupiter</artifactId> </dependency> <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </dependency> + <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> </dependency> |