Add Karaf 4 artifacts
[ovsdb.git] / southbound / southbound-artifacts / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5 This program and the accompanying materials are made available under the
6 terms of the Eclipse Public License v1.0 which accompanies this distribution,
7 and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9
10 <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/xsd/maven-4.0.0.xsd">
11
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>odlparent-lite</artifactId>
17     <version>1.8.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>southbound-artifacts</artifactId>
23   <version>1.4.0-SNAPSHOT</version>
24   <packaging>pom</packaging>
25   <description>The OVSDB Plugin integration project is a project for OpenDaylight that will implement the Open vSwitch Database RFC 7047 management protocol allowing the Southbound configuration of vSwitches and a network virtualization implementation.</description>
26   <licenses>
27     <license>
28       <name>Eclipse Public License v1.0</name>
29       <url>http://www.eclipse.org/legal/epl-v10.html</url>
30     </license>
31   </licenses>
32   <developers>
33     <developer>
34       <name>Sam Hague</name>
35       <email>shague@gmail.com</email>
36       <url>https://github.com/shague</url>
37     </developer>
38   </developers>
39   <scm>
40     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
41     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
42     <tag>HEAD</tag>
43     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
44   </scm>
45
46   <dependencyManagement>
47     <dependencies>
48       <dependency>
49         <groupId>${project.groupId}</groupId>
50         <artifactId>southbound-api</artifactId>
51         <version>${project.version}</version>
52       </dependency>
53       <dependency>
54         <groupId>${project.groupId}</groupId>
55         <artifactId>southbound-impl</artifactId>
56         <version>${project.version}</version>
57       </dependency>
58       <dependency>
59         <groupId>${project.groupId}</groupId>
60         <artifactId>southbound-features</artifactId>
61         <version>${project.version}</version>
62         <classifier>features</classifier>
63         <type>xml</type>
64       </dependency>
65       <dependency>
66         <groupId>${project.groupId}</groupId>
67         <artifactId>southbound-features4</artifactId>
68         <version>${project.version}</version>
69         <classifier>features</classifier>
70         <type>xml</type>
71       </dependency>
72       <dependency>
73         <groupId>${project.groupId}</groupId>
74         <artifactId>odl-ovsdb-southbound-api</artifactId>
75         <version>${project.version}</version>
76         <classifier>features</classifier>
77         <type>xml</type>
78       </dependency>
79       <dependency>
80         <groupId>${project.groupId}</groupId>
81         <artifactId>odl-ovsdb-southbound-impl</artifactId>
82         <version>${project.version}</version>
83         <classifier>features</classifier>
84         <type>xml</type>
85       </dependency>
86       <dependency>
87         <groupId>${project.groupId}</groupId>
88         <artifactId>odl-ovsdb-southbound-impl-rest</artifactId>
89         <version>${project.version}</version>
90         <classifier>features</classifier>
91         <type>xml</type>
92       </dependency>
93       <dependency>
94         <groupId>${project.groupId}</groupId>
95         <artifactId>odl-ovsdb-southbound-impl-ui</artifactId>
96         <version>${project.version}</version>
97         <classifier>features</classifier>
98         <type>xml</type>
99       </dependency>
100     </dependencies>
101   </dependencyManagement>
102
103   <!--
104       Maven Site Configuration
105
106       The following configuration is necessary for maven-site-plugin to
107       correctly identify the correct deployment path for OpenDaylight Maven
108       sites.
109   -->
110   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
111
112   <distributionManagement>
113     <site>
114       <id>opendaylight-site</id>
115       <url>${nexus.site.url}/${project.artifactId}/</url>
116     </site>
117   </distributionManagement>
118 </project>