Timoney, Dan (dt5972) | fe8d3bc | 2019-01-18 16:51:25 -0500 | [diff] [blame] | 1 | <?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 Acharya | 929c1f1 | 2018-08-01 17:21:15 +0530 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | |
Timoney, Dan (dt5972) | 42ef3e4 | 2018-09-13 12:11:35 -0400 | [diff] [blame] | 6 | <groupId>org.onap.sdnc.oam</groupId> |
Soumendu Sekhar Acharya | 929c1f1 | 2018-08-01 17:21:15 +0530 | [diff] [blame] | 7 | <artifactId>SdncReports</artifactId> |
Dan Timoney | 03c6d76 | 2020-03-18 09:30:59 -0400 | [diff] [blame] | 8 | <version>2.0.0-SNAPSHOT</version> |
Soumendu Sekhar Acharya | 929c1f1 | 2018-08-01 17:21:15 +0530 | [diff] [blame] | 9 | <packaging>pom</packaging> |
| 10 | |
Timoney, Dan (dt5972) | 42ef3e4 | 2018-09-13 12:11:35 -0400 | [diff] [blame] | 11 | <name>sdnc-oam :: SdncReports</name> |
| 12 | |
Soumendu Sekhar Acharya | 929c1f1 | 2018-08-01 17:21:15 +0530 | [diff] [blame] | 13 | <parent> |
Timoney, Dan (dt5972) | 2b7b1b6 | 2018-09-18 14:16:01 -0400 | [diff] [blame] | 14 | <groupId>org.onap.ccsdk.parent</groupId> |
| 15 | <artifactId>spring-boot-1-starter-parent</artifactId> |
Dan Timoney | 03c6d76 | 2020-03-18 09:30:59 -0400 | [diff] [blame] | 16 | <version>2.0.0-SNAPSHOT</version> |
Soumendu Sekhar Acharya | 929c1f1 | 2018-08-01 17:21:15 +0530 | [diff] [blame] | 17 | </parent> |
Timoney, Dan (dt5972) | 5cf8aa8 | 2018-09-13 10:31:18 -0400 | [diff] [blame] | 18 | <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) | 42ef3e4 | 2018-09-13 12:11:35 -0400 | [diff] [blame] | 28 | |
Soumendu Sekhar Acharya | 929c1f1 | 2018-08-01 17:21:15 +0530 | [diff] [blame] | 29 | <modules> |
| 30 | <module>SdncReportsDao</module> |
Timoney, Dan (dt5972) | 42ef3e4 | 2018-09-13 12:11:35 -0400 | [diff] [blame] | 31 | <module>SdncReportsApi</module> |
Soumendu Sekhar Acharya | 929c1f1 | 2018-08-01 17:21:15 +0530 | [diff] [blame] | 32 | </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) | 5cf8aa8 | 2018-09-13 10:31:18 -0400 | [diff] [blame] | 77 | </project> |