Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [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" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 5 | |
| 6 | <parent> |
| 7 | <groupId>org.onap.portal</groupId> |
| 8 | <artifactId>onap-portal-parent</artifactId> |
Christopher Lott (cl778h) | 0bb15c1 | 2017-09-29 14:51:47 -0400 | [diff] [blame^] | 9 | <version>1.3.0</version> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 10 | </parent> |
| 11 | |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 12 | <artifactId>widget-ms-parent</artifactId> |
Christopher Lott (cl778h) | 978dbcf | 2017-08-23 18:27:19 -0400 | [diff] [blame] | 13 | <packaging>pom</packaging> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 14 | |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 15 | <modules> |
| 16 | <module>common-widgets</module> |
| 17 | <!-- The widget-ms module uses Spring; it cannot name this parent. --> |
| 18 | <module>widget-ms</module> |
| 19 | </modules> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 20 | |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 21 | <build> |
| 22 | <plugins> |
| 23 | <!-- No deployment step for this project --> |
| 24 | <plugin> |
| 25 | <groupId>org.apache.maven.plugins</groupId> |
| 26 | <artifactId>maven-deploy-plugin</artifactId> |
| 27 | <version>2.8</version> |
| 28 | <configuration> |
| 29 | <skip>true</skip> |
| 30 | </configuration> |
| 31 | </plugin> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 32 | |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 33 | <plugin> |
| 34 | <groupId>org.jacoco</groupId> |
| 35 | <artifactId>jacoco-maven-plugin</artifactId> |
| 36 | <version>0.7.6.201602180812</version> |
| 37 | <configuration> |
| 38 | <skip>true</skip> |
| 39 | </configuration> |
| 40 | <inherited>True</inherited> |
| 41 | <executions> |
| 42 | <!-- Unit-Tests --> |
| 43 | <execution> |
| 44 | <id>prepare-agent</id> |
| 45 | <goals> |
| 46 | <goal>prepare-agent</goal> |
| 47 | </goals> |
| 48 | <phase>test</phase> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 49 | <configuration> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 50 | <destFile>${sonar.jacoco.reportPath}</destFile> |
Christopher Lott (cl778h) | 23634db | 2017-09-25 16:07:54 -0400 | [diff] [blame] | 51 | </configuration> |
Christopher Lott (cl778h) | 51d8315 | 2017-09-28 11:18:14 -0400 | [diff] [blame] | 52 | </execution> |
| 53 | <execution> |
| 54 | <id>report</id> |
| 55 | <goals> |
| 56 | <goal>report</goal> |
| 57 | </goals> |
| 58 | <phase>test</phase> |
| 59 | <configuration> |
| 60 | <dataFile>${sonar.jacoco.reportPath}</dataFile> |
| 61 | <outputDirectory>${project.basedir}/target/site/jacoco</outputDirectory> |
| 62 | </configuration> |
| 63 | </execution> |
| 64 | </executions> |
| 65 | </plugin> |
| 66 | </plugins> |
| 67 | </build> |
Christopher Lott (Christopher) (cl778h) | 627bada | 2017-06-12 09:49:00 -0400 | [diff] [blame] | 68 | |
| 69 | </project> |