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