Use 1.5.1-SNAPSHOT version of parent pom
[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.5.1-SNAPSHOT</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                 <configuration>
88                     <skipTests>false</skipTests>
89                 </configuration>
90             </plugin>
91         </plugins>
92
93     </build>
94     <modules>
95         <module>asdcApi</module>
96         <module>dataChange</module>
97         <module>lcm</module>
98         <module>dmaap-listener</module>
99         <module>ueb-listener</module>
100         <module>daexim-offsite-backup</module>
101         <module>features</module>
102         <module>artifacts</module>
103     </modules>
104     <organization>
105         <name>ONAP</name>
106     </organization>
107     <version>0.7.0-SNAPSHOT</version>
108
109
110 </project>