blob: c8a3be8d3f16cf2a75c694bccb5f3e0c1bd920bf [file] [log] [blame]
ToineSiebelink73001f62021-09-17 15:07:38 +01001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <parent>
ToineSiebelink73001f62021-09-17 15:07:38 +01006 <groupId>org.onap.cps</groupId>
Bruno Sakoto717215a2021-10-25 12:41:40 +02007 <artifactId>cps-parent</artifactId>
leventecsanyid35ad5c2023-08-23 15:55:30 +02008 <version>3.3.7-SNAPSHOT</version>
Bruno Sakoto717215a2021-10-25 12:41:40 +02009 <relativePath>../cps-parent/pom.xml</relativePath>
ToineSiebelink73001f62021-09-17 15:07:38 +010010 </parent>
11 <modelVersion>4.0.0</modelVersion>
12
13 <artifactId>jacoco-report</artifactId>
14
15 <dependencies>
16 <dependency>
17 <groupId>${project.groupId}</groupId>
18 <artifactId>cps-application</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21 <dependency>
22 <groupId>${project.groupId}</groupId>
23 <artifactId>cps-events</artifactId>
24 <version>${project.version}</version>
25 </dependency>
26 <dependency>
27 <groupId>${project.groupId}</groupId>
28 <artifactId>cps-ncmp-rest</artifactId>
29 <version>${project.version}</version>
30 </dependency>
31 <dependency>
32 <groupId>${project.groupId}</groupId>
33 <artifactId>cps-ncmp-service</artifactId>
34 <version>${project.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>${project.groupId}</groupId>
38 <artifactId>cps-path-parser</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>${project.groupId}</groupId>
43 <artifactId>cps-rest</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>${project.groupId}</groupId>
48 <artifactId>cps-ri</artifactId>
49 <version>${project.version}</version>
50 </dependency>
51 <dependency>
52 <groupId>${project.groupId}</groupId>
53 <artifactId>cps-service</artifactId>
54 <version>${project.version}</version>
55 </dependency>
ToineSiebelink0133eb02023-02-28 18:12:51 +000056 <dependency>
57 <groupId>${project.groupId}</groupId>
58 <artifactId>integration-test</artifactId>
59 <version>${project.version}</version>
60 </dependency>
ToineSiebelink73001f62021-09-17 15:07:38 +010061 </dependencies>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.jacoco</groupId>
67 <artifactId>jacoco-maven-plugin</artifactId>
ToineSiebelink73001f62021-09-17 15:07:38 +010068 <executions>
69 <execution>
ToineSiebelink73001f62021-09-17 15:07:38 +010070 <id>report</id>
71 <goals>
72 <goal>report-aggregate</goal>
73 </goals>
74 <phase>verify</phase>
75 <configuration>
76 <dataFileIncludes>
77 <fileInclude>**/code-coverage/jacoco-ut.exec</fileInclude>
78 </dataFileIncludes>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 </plugins>
84 </build>
85
86</project>