Merge "CompositeStateBuilder added for building the compositeState"
authorJoseph Keenan <joseph.keenan@est.tech>
Thu, 26 May 2022 10:37:28 +0000 (10:37 +0000)
committerGerrit Code Review <gerrit@onap.org>
Thu, 26 May 2022 10:37:28 +0000 (10:37 +0000)
1  2 
cps-ncmp-service/pom.xml

diff --combined cps-ncmp-service/pom.xml
      </parent>
  
      <artifactId>cps-ncmp-service</artifactId>
+     <properties>
+     <minimum-coverage>0.93</minimum-coverage>
+     </properties>
  
      <dependencies>
          <dependency>
              <groupId>${project.groupId}</groupId>
              <artifactId>cps-service</artifactId>
          </dependency>
 +        <dependency>
 +            <groupId>org.onap.cps</groupId>
 +            <artifactId>cps-ncmp-events</artifactId>
 +        </dependency>
 +        <dependency>
 +            <groupId>org.springframework</groupId>
 +            <artifactId>spring-web</artifactId>
 +        </dependency>
 +        <dependency>
 +            <groupId>org.mapstruct</groupId>
 +            <artifactId>mapstruct</artifactId>
 +        </dependency>
 +        <dependency>
 +            <groupId>org.mapstruct</groupId>
 +            <artifactId>mapstruct-processor</artifactId>
 +        </dependency>
 +        <!-- T E S T - D E P E N D E N C I E S -->
          <dependency>
              <groupId>org.spockframework</groupId>
              <artifactId>spock-core</artifactId>
              <artifactId>spock-spring</artifactId>
              <scope>test</scope>
          </dependency>
 +        <dependency>
 +            <groupId>org.testcontainers</groupId>
 +            <artifactId>kafka</artifactId>
 +            <scope>test</scope>
 +        </dependency>
 +        <dependency>
 +            <groupId>org.testcontainers</groupId>
 +            <artifactId>spock</artifactId>
 +            <scope>test</scope>
 +        </dependency>
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-test</artifactId>
                  </exclusion>
              </exclusions>
          </dependency>
 -        <dependency>
 -            <groupId>org.springframework</groupId>
 -            <artifactId>spring-web</artifactId>
 -        </dependency>
 -        <dependency>
 -            <groupId>org.springframework.boot</groupId>
 -            <artifactId>spring-boot-starter-validation</artifactId>
 -        </dependency>
      </dependencies>
  </project>