diff options
author | Claudio D. Gasparini <claudio.gasparini@intl.att.com> | 2021-04-19 18:18:19 +0200 |
---|---|---|
committer | Claudio David Gasparini <claudio.gasparini@intl.att.com> | 2021-04-19 18:08:04 +0000 |
commit | ac6df766bd9b092ac46fcdd636b2fa76713547ea (patch) | |
tree | 2c6e85c063f07bee8c145210e382013f38abc13c | |
parent | 3da52076907385c8a42b817f7aceb65e0dcb7cdd (diff) |
Increase minimum coverage
and remove unnecesary dependency
Issue-ID: CPS-343
Signed-off-by: Claudio D. Gasparini <claudio.gasparini@intl.att.com>
Change-Id: I3bffbd9941f539852da2e1de82f8edda08ea1ea3
-rw-r--r-- | cps-ncmp-rest/pom.xml | 6 | ||||
-rw-r--r-- | cps-ncmp-service/pom.xml | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/cps-ncmp-rest/pom.xml b/cps-ncmp-rest/pom.xml index 3abeb7d1f1..9f0e132206 100644 --- a/cps-ncmp-rest/pom.xml +++ b/cps-ncmp-rest/pom.xml @@ -30,7 +30,7 @@ <artifactId>cps-ncmp-rest</artifactId> <properties> - <minimum-coverage>0.0</minimum-coverage> + <minimum-coverage>0.5</minimum-coverage> </properties> <dependencies> @@ -51,6 +51,10 @@ </dependency> <dependency> <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-validation</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jetty</artifactId> </dependency> <dependency> diff --git a/cps-ncmp-service/pom.xml b/cps-ncmp-service/pom.xml index ddb78d3848..a5be80d7a9 100644 --- a/cps-ncmp-service/pom.xml +++ b/cps-ncmp-service/pom.xml @@ -30,15 +30,11 @@ <artifactId>cps-ncmp-service</artifactId> <properties> - <minimum-coverage>0.0</minimum-coverage> + <minimum-coverage>0.7</minimum-coverage> </properties> <dependencies> <dependency> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-starter-validation</artifactId> - </dependency> - <dependency> <groupId>${project.groupId}</groupId> <artifactId>cps-service</artifactId> </dependency> |