a8eff7badeedeed81cffd2c2e0b485c805ac8fa0
[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.5.1</version>
9                 <relativePath/>
10         </parent>
11
12         <groupId>org.onap.sdnc.northbound</groupId>
13         <artifactId>sdnc-northbound</artifactId>
14         <version>1.8.0-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>optical-service</module>
27                 <module>vnfapi</module>
28                 <module>vnftools</module>
29                 <module>features</module>
30         </modules>
31
32         <scm>
33                 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-northbound.git</connection>
34
35                 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-northbound.git</developerConnection>
36                 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-northbound/browse</url>
37         </scm>
38         <issueManagement>
39                 <system>JIRA</system>
40                 <url>https://jira.onap.org/</url>
41         </issueManagement>
42         <ciManagement>
43                 <system>Jenkins</system>
44                 <url>https://jenkins.onap.org/</url>
45         </ciManagement>
46         <distributionManagement>
47                 <site>
48                         <id>sdnc-javadoc</id>
49                         <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
50                 </site>
51         </distributionManagement>
52
53         <build>
54                 <plugins>
55                         <plugin>
56                                 <groupId>org.apache.maven.plugins</groupId>
57                                 <artifactId>maven-surefire-plugin</artifactId>
58                                 <version>2.17</version>
59                                 <configuration>
60                                         <skipTests>false</skipTests>
61                                 </configuration>
62                         </plugin>
63                 </plugins>
64         </build>
65
66         <profiles>
67                 <profile>
68                         <id>blackduck</id>
69                         <activation>
70                                 <property>
71                                         <name>blackduck-scan</name>
72                                 </property>
73                         </activation>
74                         <build>
75                                         <plugins>
76                                                 <plugin>
77                                                         <groupId>com.blackducksoftware.integration</groupId>
78                                                         <artifactId>hub-maven-plugin</artifactId>
79                                                         <version>1.4.0</version>
80                                                         <inherited>false</inherited>
81                                                         <configuration>
82                                                                 <hubProjectName>${project.name}</hubProjectName>
83                                                                 <outputDirectory>${project.basedir}</outputDirectory>
84                                                         </configuration>
85                                                         <executions>
86                                                                 <execution>
87                                                                         <id>create-bdio-file</id>
88                                                                         <phase>package</phase>
89                                                                         <goals>
90                                                                                 <goal>createHubOutput</goal>
91                                                                         </goals>
92                                                                 </execution>
93                                                         </executions>
94                                                 </plugin>
95                                         </plugins>
96
97
98                         </build>
99
100                 </profile>
101
102         </profiles>
103 </project>