Release Jakarta M4 artifacts
[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>2.3.3</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.sdnc.northbound</groupId>
13     <artifactId>sdnc-northbound</artifactId>
14     <version>2.3.1-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
19         applications
20     </description>
21     <url>https://wiki.onap.org</url>
22     <organization>
23         <name>ONAP</name>
24     </organization>
25
26     <modules>
27         <module>generic-resource-api</module>
28         <module>optical-service</module>
29         <module>vnftools</module>
30         <module>features</module>
31     </modules>
32
33     <scm>
34         <connection>scm:git:ssh://git@${onap.git.host}/sdnc-northbound.git</connection>
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>
50                 dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}
51             </url>
52         </site>
53     </distributionManagement>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <groupId>org.apache.maven.plugins</groupId>
59                 <artifactId>maven-surefire-plugin</artifactId>
60                 <version>2.17</version>
61                 <configuration>
62                     <skipTests>false</skipTests>
63                 </configuration>
64             </plugin>
65         </plugins>
66     </build>
67
68     <profiles>
69         <profile>
70             <id>blackduck</id>
71             <activation>
72                 <property>
73                     <name>blackduck-scan</name>
74                 </property>
75             </activation>
76             <build>
77                 <plugins>
78                     <plugin>
79                         <groupId>com.blackducksoftware.integration</groupId>
80                         <artifactId>hub-maven-plugin</artifactId>
81                         <version>1.4.0</version>
82                         <inherited>false</inherited>
83                         <configuration>
84                             <hubProjectName>${project.name}</hubProjectName>
85                             <outputDirectory>${project.basedir}</outputDirectory>
86                         </configuration>
87                         <executions>
88                             <execution>
89                                 <id>create-bdio-file</id>
90                                 <phase>package</phase>
91                                 <goals>
92                                     <goal>createHubOutput</goal>
93                                 </goals>
94                             </execution>
95                         </executions>
96                     </plugin>
97                 </plugins>
98             </build>
99         </profile>
100     </profiles>
101 </project>