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