ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 1 | <?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> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 6 | <groupId>org.onap.cps</groupId> |
Bruno Sakoto | 717215a | 2021-10-25 12:41:40 +0200 | [diff] [blame] | 7 | <artifactId>cps-parent</artifactId> |
seanbeirne | f0f4fd8 | 2023-03-07 13:42:04 +0000 | [diff] [blame] | 8 | <version>3.2.4-SNAPSHOT</version> |
Bruno Sakoto | 717215a | 2021-10-25 12:41:40 +0200 | [diff] [blame] | 9 | <relativePath>../cps-parent/pom.xml</relativePath> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 10 | </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> |
ToineSiebelink | 0133eb0 | 2023-02-28 18:12:51 +0000 | [diff] [blame^] | 56 | <dependency> |
| 57 | <groupId>${project.groupId}</groupId> |
| 58 | <artifactId>integration-test</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | </dependency> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 61 | </dependencies> |
| 62 | |
| 63 | <build> |
| 64 | <plugins> |
| 65 | <plugin> |
| 66 | <groupId>org.jacoco</groupId> |
| 67 | <artifactId>jacoco-maven-plugin</artifactId> |
| 68 | <configuration> |
lukegleeson | d5bda88 | 2022-03-02 14:32:47 +0000 | [diff] [blame] | 69 | <!--All exclusions below are referring to generated code--> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 70 | <excludes> |
| 71 | <exclude>org/onap/cps/event/model/*</exclude> |
| 72 | <exclude>org/onap/cps/rest/model/*</exclude> |
| 73 | <exclude>org/onap/cps/cpspath/parser/antlr4/*</exclude> |
| 74 | <exclude>org/onap/cps/ncmp/rest/model/*</exclude> |
lukegleeson | d5bda88 | 2022-03-02 14:32:47 +0000 | [diff] [blame] | 75 | <exclude>org/onap/cps/ncmp/rest/controller/*MapperImpl.class</exclude> |
| 76 | <exclude>org/onap/cps/rest/controller/*MapperImpl.class</exclude> |
JosephKeenan | f31c7f8 | 2022-05-24 18:59:25 +0100 | [diff] [blame] | 77 | <exclude>org/onap/cps/ncmp/api/impl/async/*MapperImpl.class</exclude> |
puthuparambil.aditya | f9c5e6c | 2022-05-12 16:31:00 +0100 | [diff] [blame] | 78 | <exclude>org/onap/cps/ncmp/rest/stub/*</exclude> |
ToineSiebelink | 73001f6 | 2021-09-17 15:07:38 +0100 | [diff] [blame] | 79 | </excludes> |
| 80 | </configuration> |
| 81 | <executions> |
| 82 | <execution> |
| 83 | <id>default-prepare-agent</id> |
| 84 | <goals> |
| 85 | <goal>prepare-agent</goal> |
| 86 | </goals> |
| 87 | </execution> |
| 88 | <execution> |
| 89 | <id>report</id> |
| 90 | <goals> |
| 91 | <goal>report-aggregate</goal> |
| 92 | </goals> |
| 93 | <phase>verify</phase> |
| 94 | <configuration> |
| 95 | <dataFileIncludes> |
| 96 | <fileInclude>**/code-coverage/jacoco-ut.exec</fileInclude> |
| 97 | </dataFileIncludes> |
| 98 | </configuration> |
| 99 | </execution> |
| 100 | </executions> |
| 101 | </plugin> |
| 102 | </plugins> |
| 103 | </build> |
| 104 | |
| 105 | </project> |