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 /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 'pom.xml')
-rw-r--r-- | pom.xml | 83 |
1 files changed, 83 insertions, 0 deletions
@@ -67,6 +67,7 @@ <modules> <module>certService</module> + <module>certServiceClient</module> </modules> <distributionManagement> @@ -86,4 +87,86 @@ </site> </distributionManagement> + <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.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> + <!-- 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> + + <!-- Test dependecies --> + + <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> + </dependencies> + </dependencyManagement> + </project> |