blob: 03e89429e714d0d483872230b4f39a8c363728d9 [file] [log] [blame]
Christopher Lott (Christopher) (cl778h)627bada2017-06-12 09:49:00 -04001<?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)51d83152017-09-28 11:18:14 -04005
6 <parent>
7 <groupId>org.onap.portal</groupId>
8 <artifactId>onap-portal-parent</artifactId>
Christopher Lott (cl778h)0bb15c12017-09-29 14:51:47 -04009 <version>1.3.0</version>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040010 </parent>
11
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -040012 <artifactId>widget-ms-parent</artifactId>
Christopher Lott (cl778h)978dbcf2017-08-23 18:27:19 -040013 <packaging>pom</packaging>
Christopher Lott (Christopher) (cl778h)627bada2017-06-12 09:49:00 -040014
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040015 <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)627bada2017-06-12 09:49:00 -040020
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040021 <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)23634db2017-09-25 16:07:54 -040032
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040033 <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)23634db2017-09-25 16:07:54 -040049 <configuration>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040050 <destFile>${sonar.jacoco.reportPath}</destFile>
Christopher Lott (cl778h)23634db2017-09-25 16:07:54 -040051 </configuration>
Christopher Lott (cl778h)51d83152017-09-28 11:18:14 -040052 </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)627bada2017-06-12 09:49:00 -040068
69</project>