Bump odlparent 2.0.2 to 2.0.4
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Ericsson India Global Services Pvt Ltd. 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>2.0.4</version>
13     <relativePath/>
14   </parent>
15   <modelVersion>4.0.0</modelVersion>
16   <groupId>org.opendaylight.ovsdb</groupId>
17   <artifactId>hwvtepsouthbound-karaf</artifactId>
18   <version>1.5.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-hwvtepsouthbound-ui</karaf.localFeature>
24   </properties>
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>${project.groupId}</groupId>
29         <artifactId>hwvtepsouthbound-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36   <dependencies>
37     <dependency>
38       <!-- scope is compile so all features (there is only one) are installed
39       into startup.properties and the feature repo itself is not installed -->
40       <groupId>org.apache.karaf.features</groupId>
41       <artifactId>framework</artifactId>
42       <type>kar</type>
43     </dependency>
44
45     <dependency>
46       <groupId>${project.groupId}</groupId>
47       <artifactId>hwvtepsouthbound-features</artifactId>
48       <classifier>features</classifier>
49       <type>xml</type>
50       <scope>runtime</scope>
51     </dependency>
52   </dependencies>
53
54   <build>
55     <plugins>
56       <!-- DO NOT deploy the karaf artifact -->
57       <plugin>
58         <groupId>org.apache.maven.plugins</groupId>
59         <artifactId>maven-deploy-plugin</artifactId>
60         <configuration>
61           <skip>true</skip>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66
67   <!--
68       Maven Site Configuration
69
70       The following configuration is necessary for maven-site-plugin to
71       correctly identify the correct deployment path for OpenDaylight Maven
72       sites.
73   -->
74   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
75
76   <distributionManagement>
77     <site>
78       <id>opendaylight-site</id>
79       <url>${nexus.site.url}/${project.artifactId}/</url>
80     </site>
81   </distributionManagement>
82 </project>