vnfapi yang model change
[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.onap.ccsdk.parent</groupId>
7                 <artifactId>odlparent-carbon-sr1</artifactId>
8                 <version>0.1.0</version>
9
10         </parent>
11
12         <modelVersion>4.0.0</modelVersion>
13         <packaging>pom</packaging>
14         <groupId>org.onap.sdnc.northbound</groupId>
15         <artifactId>sdnc-northbound</artifactId>
16
17         <name>sdnc-northbound</name>
18         <url>https://wiki.onap.org</url>
19         <description>The SDN-C Northbound APIs repo contains code for northbound API adaptors, typically MD-SAL applications</description>
20
21
22         <issueManagement>
23                 <system>JIRA</system>
24                 <url>https://jira.onap.org/</url>
25         </issueManagement>
26
27
28         <scm>
29                 <connection>scm:git:ssh://git@${onap.git.host}/sdnc-northbound.git</connection>
30
31                 <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/sdnc-northbound.git</developerConnection>
32                 <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/sdnc-northbound/browse</url>
33         </scm>
34
35         <ciManagement>
36                 <system>Jenkins</system>
37                 <url>https://jenkins.onap.org/</url>
38         </ciManagement>
39
40         <distributionManagement>
41                 <site>
42                         <id>sdnc-javadoc</id>
43                         <url>dav:https://${onap.nexus.host}:${onap.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url>
44                 </site>
45         </distributionManagement>
46         <profiles>
47                 <profile>
48                         <id>blackduck</id>
49                         <activation>
50                                 <property>
51                                         <name>blackduck-scan</name>
52                                 </property>
53                         </activation>
54                         <build>
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
78                         </build>
79
80                 </profile>
81
82         </profiles>
83
84         <build>
85                 <plugins>
86                         <plugin>
87                                 <groupId>org.apache.maven.plugins</groupId>
88                                 <artifactId>maven-surefire-plugin</artifactId>
89                                 <version>2.17</version>
90                                 <configuration>
91                                         <skipTests>false</skipTests>
92                                 </configuration>
93                         </plugin>
94                         <plugin>
95                                 <groupId>org.sonatype.plugins</groupId>
96                                 <artifactId>nexus-staging-maven-plugin</artifactId>
97                                 <version>1.6.7</version>
98                                 <extensions>true</extensions>
99                                 <configuration>
100                                         <nexusUrl>https://${onap.nexus.host}</nexusUrl>
101                                         <stagingProfileId>${onap.nexus.staging.profile-id}</stagingProfileId>
102                                         <serverId>${onap.nexus.staging.server-id}</serverId>
103                                 </configuration>
104                         </plugin>
105                 </plugins>
106
107         </build>
108         <modules>
109                 <module>generic-resource-api</module>
110                 <module>vnfapi</module>
111                 <module>vnftools</module>
112         </modules>
113         <organization>
114                 <name>ONAP</name>
115         </organization>
116         <version>1.3.0-SNAPSHOT</version>
117
118
119 </project>