diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2020-12-16 13:08:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-12-16 13:08:19 +0000 |
commit | 966f3ab710bd1bebaa81e2394627df47a3f98909 (patch) | |
tree | eab6396b06c6d308581686953547c35d7be65d6c /cps-rest/pom.xml | |
parent | 0e9a8a51e51c7f3f90e4eae4b9907558b39818f8 (diff) | |
parent | 008c0adc3712ba0aee6410e8cd7efc61f4cbeeac (diff) |
Merge "Few Sonar Fixes Add spock-spring testing"
Diffstat (limited to 'cps-rest/pom.xml')
-rwxr-xr-x | cps-rest/pom.xml | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/cps-rest/pom.xml b/cps-rest/pom.xml index 3a82ca3770..f2f643ac23 100755 --- a/cps-rest/pom.xml +++ b/cps-rest/pom.xml @@ -54,17 +54,6 @@ <groupId>org.modelmapper</groupId>
<artifactId>modelmapper</artifactId>
</dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>org.junit.vintage</groupId>
- <artifactId>junit-vintage-engine</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
<!-- T E S T D E P E N D E N C I E S -->
<dependency>
<groupId>org.codehaus.groovy</groupId>
@@ -77,10 +66,26 @@ <scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.spockframework</groupId>
+ <artifactId>spock-spring</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-test</artifactId>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.junit.vintage</groupId>
+ <artifactId>junit-vintage-engine</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
<build>
|