blob: 56a73916072a13e358f270eb9fbd206a5bd1dba6 [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">
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +05303 <modelVersion>4.0.0</modelVersion>
4
5
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -04006 <groupId>org.onap.sdnc.oam</groupId>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +05307 <artifactId>SdncReports</artifactId>
Dan Timoney03c6d762020-03-18 09:30:59 -04008 <version>2.0.0-SNAPSHOT</version>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +05309 <packaging>pom</packaging>
10
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040011 <name>sdnc-oam :: SdncReports</name>
12
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +053013 <parent>
Timoney, Dan (dt5972)2b7b1b62018-09-18 14:16:01 -040014 <groupId>org.onap.ccsdk.parent</groupId>
15 <artifactId>spring-boot-1-starter-parent</artifactId>
Dan Timoney03c6d762020-03-18 09:30:59 -040016 <version>2.0.0-SNAPSHOT</version>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +053017 </parent>
Timoney, Dan (dt5972)5cf8aa82018-09-13 10:31:18 -040018 <distributionManagement>
19 <repository>
20 <id>ecomp-releases</id>
21 <url>http://nexus.onap.org/content/repositories/releases</url>
22 </repository>
23 <snapshotRepository>
24 <id>ecomp-snapshots</id>
25 <url>http://nexus.onap.org/content/repositories/snapshots</url>
26 </snapshotRepository>
27 </distributionManagement>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040028
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +053029 <modules>
30 <module>SdncReportsDao</module>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040031 <module>SdncReportsApi</module>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +053032 </modules>
33
34 <build>
35
36 <plugins>
37 <plugin>
38 <groupId>org.jacoco</groupId>
39 <artifactId>jacoco-maven-plugin</artifactId>
40 <version>0.7.5.201505241946</version>
41 <executions>
42 <!-- Prepares the property pointing to the JaCoCo runtime agent which
43 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>
52 <!-- Sets the name of the property containing the settings for JaCoCo
53 runtime agent. -->
54 <propertyName>surefireArgLine</propertyName>
55 </configuration>
56 </execution>
57 <!-- Ensures that the code coverage report for unit tests is created
58 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>
76
Timoney, Dan (dt5972)5cf8aa82018-09-13 10:31:18 -040077</project>