blob: 1fdc408a2116a9aa494d0511c90678a1a442f2f6 [file] [log] [blame]
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -05001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Dan Timoneyf20174d2020-08-10 14:09:14 -04003 <modelVersion>4.0.0</modelVersion>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +05304
Dan Timoneyf20174d2020-08-10 14:09:14 -04005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>spring-boot-1-starter-parent</artifactId>
Dan Timoney7f5c3b32021-03-19 11:00:40 -04008 <version>2.2.0-SNAPSHOT</version>
Dan Timoneyf20174d2020-08-10 14:09:14 -04009 <relativePath/>
10 </parent>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +053011
Dan Timoneyf20174d2020-08-10 14:09:14 -040012 <groupId>org.onap.sdnc.oam</groupId>
13 <artifactId>SdncReports</artifactId>
Hesam Rahimi55378e72021-06-07 20:02:32 +000014 <version>2.2.0-SNAPSHOT</version>
Dan Timoneyf20174d2020-08-10 14:09:14 -040015 <packaging>pom</packaging>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +053016
Dan Timoneyf20174d2020-08-10 14:09:14 -040017 <name>sdnc-oam :: SdncReports</name>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040018
Dan Timoneyf20174d2020-08-10 14:09:14 -040019 <modules>
20 <module>SdncReportsDao</module>
21 <module>SdncReportsApi</module>
22 </modules>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040023
Dan Timoneyf20174d2020-08-10 14:09:14 -040024 <distributionManagement>
25 <repository>
26 <id>ecomp-releases</id>
27 <url>http://nexus.onap.org/content/repositories/releases</url>
28 </repository>
29 <snapshotRepository>
30 <id>ecomp-snapshots</id>
31 <url>http://nexus.onap.org/content/repositories/snapshots</url>
32 </snapshotRepository>
33 </distributionManagement>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +053034
Dan Timoneyf20174d2020-08-10 14:09:14 -040035 <build>
36 <plugins>
37 <plugin>
38 <groupId>org.jacoco</groupId>
39 <artifactId>jacoco-maven-plugin</artifactId>
40 <version>0.7.5.201505241946</version>
41 <executions>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -040042 <!-- Prepares the property pointing to the JaCoCo runtime agent which
Dan Timoneyf20174d2020-08-10 14:09:14 -040043 is passed as VM argument when Maven the Surefire plugin is executed. -->
44 <execution>
45 <id>pre-unit-test</id>
46 <goals>
47 <goal>prepare-agent</goal>
48 </goals>
49 <configuration>
50 <!-- Sets the path to the file which contains the execution data. -->
51 <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -040052 <!-- Sets the name of the property containing the settings for JaCoCo
Dan Timoneyf20174d2020-08-10 14:09:14 -040053 runtime agent. -->
54 <propertyName>surefireArgLine</propertyName>
55 </configuration>
56 </execution>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -040057 <!-- Ensures that the code coverage report for unit tests is created
Dan Timoneyf20174d2020-08-10 14:09:14 -040058 after unit tests have been run. -->
59 <execution>
60 <id>post-unit-test</id>
61 <phase>test</phase>
62 <goals>
63 <goal>report</goal>
64 </goals>
65 <configuration>
66 <!-- Sets the path to the file which contains the execution data. -->
67 <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
68 <!-- Sets the output directory for the code coverage report. -->
69 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
70 </configuration>
71 </execution>
72 </executions>
73 </plugin>
74 </plugins>
75 </build>
Timoney, Dan (dt5972)5cf8aa82018-09-13 10:31:18 -040076</project>