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