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