2124f1fd3ed2216d5c6ee5dc0293fbf0f55343a5
[nonrtric.git] / sdnc-a1-controller / northbound / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4    Modifications Copyright (C) 2019 Nordix Foundation.
5   ================================================================================
6   Licensed under the Apache License, Version 2.0 (the "License");
7   you may not use this file except in compliance with the License.
8   You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17
18   SPDX-License-Identifier: Apache-2.0
19   ============LICENSE_END=========================================================
20 -->
21 <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">
22         <modelVersion>4.0.0</modelVersion>
23
24         <repositories>
25                 <repository>
26                         <id>onap-releases</id>
27                         <name>onap-releases</name>
28                         <url>https://nexus.onap.org/content/repositories/releases/</url>
29                 </repository>
30         </repositories>
31
32         <parent>
33                 <groupId>org.onap.ccsdk.parent</groupId>
34                 <artifactId>odlparent-lite</artifactId>
35                 <version>1.4.3</version>
36                 <relativePath/>
37         </parent>
38
39         <groupId>org.onap.sdnc.northbound</groupId>
40         <artifactId>sdnc-northbound</artifactId>
41         <version>1.7.3-SNAPSHOT</version>
42         <packaging>pom</packaging>
43
44         <name>sdnc-northbound</name>
45         <description>The SDN-C Northbound APIs repo contains code for northbound API adaptors, typically MD-SAL applications</description>
46         <url>https://wiki.onap.org</url>
47         <organization>
48                 <name>ONAP</name>
49         </organization>
50
51         <modules>
52                 <module>features</module>
53                 <module>nonrt-ric-api</module>
54         </modules>
55
56         <scm>
57                 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-northbound.git</connection>
58
59                 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-northbound.git</developerConnection>
60                 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-northbound/browse</url>
61         </scm>
62         <issueManagement>
63                 <system>JIRA</system>
64                 <url>https://jira.onap.org/</url>
65         </issueManagement>
66         <ciManagement>
67                 <system>Jenkins</system>
68                 <url>https://jenkins.onap.org/</url>
69         </ciManagement>
70         <distributionManagement>
71                 <site>
72                         <id>sdnc-javadoc</id>
73                         <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
74                 </site>
75         </distributionManagement>
76
77         <build>
78                 <plugins>
79                         <plugin>
80                                 <groupId>org.apache.maven.plugins</groupId>
81                                 <artifactId>maven-surefire-plugin</artifactId>
82                                 <version>2.17</version>
83                                 <configuration>
84                                         <skipTests>false</skipTests>
85                                 </configuration>
86                         </plugin>
87                 </plugins>
88         </build>
89
90         <profiles>
91                 <profile>
92                         <id>blackduck</id>
93                         <activation>
94                                 <property>
95                                         <name>blackduck-scan</name>
96                                 </property>
97                         </activation>
98                         <build>
99                                         <plugins>
100                                                 <plugin>
101                                                         <groupId>com.blackducksoftware.integration</groupId>
102                                                         <artifactId>hub-maven-plugin</artifactId>
103                                                         <version>1.4.0</version>
104                                                         <inherited>false</inherited>
105                                                         <configuration>
106                                                                 <hubProjectName>${project.name}</hubProjectName>
107                                                                 <outputDirectory>${project.basedir}</outputDirectory>
108                                                         </configuration>
109                                                         <executions>
110                                                                 <execution>
111                                                                         <id>create-bdio-file</id>
112                                                                         <phase>package</phase>
113                                                                         <goals>
114                                                                                 <goal>createHubOutput</goal>
115                                                                         </goals>
116                                                                 </execution>
117                                                         </executions>
118                                                 </plugin>
119                                         </plugins>
120
121
122                         </build>
123
124                 </profile>
125
126         </profiles>
127 </project>