diff options
author | kjaniak <kornel.janiak@nokia.com> | 2020-02-14 16:27:00 +0100 |
---|---|---|
committer | kjaniak <kornel.janiak@nokia.com> | 2020-02-17 07:31:20 +0100 |
commit | 85022a807f5fa6b5aa673df43e3815c1fbe00248 (patch) | |
tree | 652871183cef63cc47823ae73cf5682248cdef8d /pom.xml | |
parent | 8209f7c8dc47546a354978e36b96d3b80b5b55d9 (diff) |
Add of dummy test
pluginManagement section moved to parent pom.xml
Rename of package to follow conventions.
Issue-ID: AAF-996
Signed-off-by: kjaniak <kornel.janiak@nokia.com>
Change-Id: Id0e011408b149270da88157d1568a23b4709514b
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -52,6 +52,7 @@ <springdoc-openapi-maven-plugin.version>0.2</springdoc-openapi-maven-plugin.version> <gson.version>2.8.6</gson.version> <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version> + <junit.version>5.6.0</junit.version> <!-- Docker --> <skipDockerPush>true</skipDockerPush> @@ -70,6 +71,27 @@ <module>certServiceClient</module> </modules> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <version>${spring-boot-starter.version}</version> + </plugin> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <version>${maven-javadoc-plugin.version}</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>${maven-surefire-plugin.version}</version> + </plugin> + </plugins> + </pluginManagement> + </build> + <distributionManagement> <repository> <id>ecomp-releases</id> @@ -155,6 +177,12 @@ <!-- Test dependecies --> <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <version>${junit.version}</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito-core.version}</version> |