4f59f50e7cb0b7d19b6177caa64117537166776b
[ovsdb.git] / southbound / southbound-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 2016 Cisco Systems and others. All rights reserved.
4 This program and the accompanying materials are made available under the
5 terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
7 -->
8 <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">
9   <parent>
10     <groupId>org.opendaylight.odlparent</groupId>
11     <artifactId>karaf4-parent</artifactId>
12     <version>9.0.6</version>
13     <relativePath/>
14   </parent>
15   <modelVersion>4.0.0</modelVersion>
16   <groupId>org.opendaylight.ovsdb</groupId>
17   <artifactId>southbound-karaf</artifactId>
18   <version>1.13.0-SNAPSHOT</version>
19   <!-- <name> formatting is used by autorelease to parse and notify projects on
20        build failure. Please do not modify this unless you have a good reason. -->
21   <name>ODL :: ovsdb :: ${project.artifactId}</name>
22   <properties>
23     <karaf.localFeature>odl-ovsdb-southbound-impl-ui</karaf.localFeature>
24     <maven.deploy.skip>true</maven.deploy.skip>
25   </properties>
26   <dependencyManagement>
27     <dependencies>
28       <dependency>
29         <groupId>${project.groupId}</groupId>
30         <artifactId>southbound-artifacts</artifactId>
31         <version>${project.version}</version>
32         <type>pom</type>
33         <scope>import</scope>
34       </dependency>
35     </dependencies>
36   </dependencyManagement>
37   <dependencies>
38     <dependency>
39       <!-- scope is compile so all features (there is only one) are installed
40       into startup.properties and the feature repo itself is not installed -->
41       <groupId>org.apache.karaf.features</groupId>
42       <artifactId>framework</artifactId>
43       <type>kar</type>
44     </dependency>
45
46     <dependency>
47       <groupId>${project.groupId}</groupId>
48       <artifactId>southbound-features</artifactId>
49       <classifier>features</classifier>
50       <type>xml</type>
51       <scope>runtime</scope>
52     </dependency>
53   </dependencies>
54
55   <!--
56       Maven Site Configuration
57
58       The following configuration is necessary for maven-site-plugin to
59       correctly identify the correct deployment path for OpenDaylight Maven
60       sites.
61   -->
62   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
63
64   <distributionManagement>
65     <site>
66       <id>opendaylight-site</id>
67       <url>${nexus.site.url}/${project.artifactId}/</url>
68     </site>
69   </distributionManagement>
70 </project>