[STAGING] Add staging plugin
[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.0.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
46         <build>
47                 <plugins>
48                         <!-- Blackduck plugin breaks release build <plugin> <groupId>com.blackducksoftware.integration</groupId>
49                                 <artifactId>hub-maven-plugin</artifactId> <version>1.4.0</version> <inherited>false</inherited>
50                                 <configuration> <hubProjectName>${project.name}</hubProjectName> <outputDirectory>${project.basedir}</outputDirectory>
51                                 </configuration> <executions> <execution> <id>create-bdio-file</id> <phase>package</phase>
52                                 <goals> <goal>createHubOutput</goal> </goals> </execution> </executions>
53                                 </plugin> -->
54                         <plugin>
55                                 <groupId>org.sonatype.plugins</groupId>
56                                 <artifactId>nexus-staging-maven-plugin</artifactId>
57                                 <version>1.6.7</version>
58                                 <extensions>true</extensions>
59                                 <configuration>
60                                         <nexusUrl>https://nexus.openecomp.org</nexusUrl>
61                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
62                                         <serverId>ecomp-staging</serverId>
63                                 </configuration>
64                         </plugin>
65                         <plugin>
66                                 <groupId>org.apache.maven.plugins</groupId>
67                                 <artifactId>maven-surefire-plugin</artifactId>
68                                 <version>2.17</version>
69                                 <configuration>
70                                         <skipTests>true</skipTests>
71                                 </configuration>
72                         </plugin>
73                 </plugins>
74
75         </build>
76         <modules>
77                 <module>asdcApi</module>
78                 <module>dataChange</module>
79                 <!-- <module>ueb-listener</module> -->
80                 <module>vnfapi</module>
81                 <module>vnftools</module>
82         </modules>
83         <organization>
84                 <name>AT&amp;T</name>
85         </organization>
86         <version>1.0.0</version>
87
88
89 </project>