diff options
author | kjaniak <kornel.janiak@nokia.com> | 2020-02-14 14:33:27 +0100 |
---|---|---|
committer | kjaniak <kornel.janiak@nokia.com> | 2020-02-14 14:56:23 +0100 |
commit | 8209f7c8dc47546a354978e36b96d3b80b5b55d9 (patch) | |
tree | f2b94a835701ab5ccab5e489a50c452116d5c2a6 /certService/pom.xml | |
parent | a25ac75e388dccaf9c69fa271098295ca1e43d81 (diff) |
Adding certServerClient module to repo
Issue-ID: AAF-996
Signed-off-by: kjaniak <kornel.janiak@nokia.com>
Change-Id: I787c9a15bb2f9a63084eb3663368d5b707dc2452
Diffstat (limited to 'certService/pom.xml')
-rw-r--r-- | certService/pom.xml | 46 |
1 files changed, 4 insertions, 42 deletions
diff --git a/certService/pom.xml b/certService/pom.xml index 3f17f390..03200dd3 100644 --- a/certService/pom.xml +++ b/certService/pom.xml @@ -26,84 +26,46 @@ <description>AAF Certification Service Api</description> <packaging>jar</packaging> - <dependencyManagement> - <dependencies> - <dependency> - <!-- Import dependency management from Spring Boot --> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-dependencies</artifactId> - <version>${spring-boot-starter.version}</version> - <type>pom</type> - <scope>import</scope> - </dependency> - </dependencies> - </dependencyManagement> - <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> - <version>${spring-boot-starter.version}</version> - <exclusions> - <exclusion> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-logging</artifactId> - </exclusion> - </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j2</artifactId> - <version>${spring-boot-starter-log4j2.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> - <version>${spring-boot-starter.version}</version> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>org.junit.vintage</groupId> - <artifactId>junit-vintage-engine</artifactId> - </exclusion> - </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> - <version>${mockito-core.version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.assertj</groupId> - <artifactId>assertj-core</artifactId> - <version>${assertj-core.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> - <version>${spring-boot-starter-actuator.version}</version> </dependency> <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-ui</artifactId> - <version>${springdoc-openapi-ui.version}</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> - <version>${bouncycastle.version}</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> - <version>${bouncycastle.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>${gson.version}</version> + </dependency> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> </dependency> </dependencies> |