Test case addition for SONAR coverage
[sdnc/northbound.git] / pom.xml
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">
3         <modelVersion>4.0.0</modelVersion>
4
5         <parent>
6                 <groupId>org.onap.ccsdk.parent</groupId>
7                 <artifactId>odlparent-lite</artifactId>
8                 <version>1.3.3-SNAPSHOT</version>
9                 <relativePath/>
10         </parent>
11
12         <groupId>org.onap.sdnc.northbound</groupId>
13         <artifactId>sdnc-northbound</artifactId>
14         <version>1.6.2-SNAPSHOT</version>
15         <packaging>pom</packaging>
16
17         <name>sdnc-northbound</name>
18         <description>The SDN-C Northbound APIs repo contains code for northbound API adaptors, typically MD-SAL applications</description>
19         <url>https://wiki.onap.org</url>
20         <organization>
21                 <name>ONAP</name>
22         </organization>
23
24         <modules>
25                 <module>generic-resource-api</module>
26                 <module>vnfapi</module>
27                 <module>vnftools</module>
28                 <module>features</module>
29         </modules>
30
31         <scm>
32                 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-northbound.git</connection>
33
34                 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-northbound.git</developerConnection>
35                 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-northbound/browse</url>
36         </scm>
37         <issueManagement>
38                 <system>JIRA</system>
39                 <url>https://jira.onap.org/</url>
40         </issueManagement>
41         <ciManagement>
42                 <system>Jenkins</system>
43                 <url>https://jenkins.onap.org/</url>
44         </ciManagement>
45         <distributionManagement>
46                 <site>
47                         <id>sdnc-javadoc</id>
48                         <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
49                 </site>
50         </distributionManagement>
51
52         <build>
53                 <plugins>
54                         <plugin>
55                                 <groupId>org.apache.maven.plugins</groupId>
56                                 <artifactId>maven-surefire-plugin</artifactId>
57                                 <version>2.17</version>
58                                 <configuration>
59                                         <skipTests>false</skipTests>
60                                 </configuration>
61                         </plugin>
62                 </plugins>
63         </build>
64
65         <profiles>
66                 <profile>
67                         <id>blackduck</id>
68                         <activation>
69                                 <property>
70                                         <name>blackduck-scan</name>
71                                 </property>
72                         </activation>
73                         <build>
74                                         <plugins>
75                                                 <plugin>
76                                                         <groupId>com.blackducksoftware.integration</groupId>
77                                                         <artifactId>hub-maven-plugin</artifactId>
78                                                         <version>1.4.0</version>
79                                                         <inherited>false</inherited>
80                                                         <configuration>
81                                                                 <hubProjectName>${project.name}</hubProjectName>
82                                                                 <outputDirectory>${project.basedir}</outputDirectory>
83                                                         </configuration>
84                                                         <executions>
85                                                                 <execution>
86                                                                         <id>create-bdio-file</id>
87                                                                         <phase>package</phase>
88                                                                         <goals>
89                                                                                 <goal>createHubOutput</goal>
90                                                                         </goals>
91                                                                 </execution>
92                                                         </executions>
93                                                 </plugin>
94                                         </plugins>
95
96
97                         </build>
98
99                 </profile>
100
101         </profiles>
102 </project>