Remove <prerequisites> from pom.xml to avoid WARNING
[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>karaf-parent</artifactId>
12     <version>1.9.0-SNAPSHOT</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>${project.artifactId}</name>
20   <properties>
21     <karaf.localFeature>odl-ovsdb-hwvtepsouthbound-ui</karaf.localFeature>
22   </properties>
23   <dependencyManagement>
24     <dependencies>
25       <dependency>
26         <groupId>${project.groupId}</groupId>
27         <artifactId>hwvtepsouthbound-artifacts</artifactId>
28         <version>${project.version}</version>
29         <type>pom</type>
30         <scope>import</scope>
31       </dependency>
32     </dependencies>
33   </dependencyManagement>
34   <dependencies>
35     <dependency>
36       <!-- scope is compile so all features (there is only one) are installed
37       into startup.properties and the feature repo itself is not installed -->
38       <groupId>org.apache.karaf.features</groupId>
39       <artifactId>framework</artifactId>
40       <type>kar</type>
41     </dependency>
42
43     <dependency>
44       <groupId>${project.groupId}</groupId>
45       <artifactId>hwvtepsouthbound-features</artifactId>
46       <classifier>features</classifier>
47       <type>xml</type>
48       <scope>runtime</scope>
49     </dependency>
50   </dependencies>
51
52   <build>
53     <plugins>
54       <!-- DO NOT deploy the karaf artifact -->
55       <plugin>
56         <groupId>org.apache.maven.plugins</groupId>
57         <artifactId>maven-deploy-plugin</artifactId>
58         <configuration>
59           <skip>true</skip>
60         </configuration>
61       </plugin>
62     </plugins>
63   </build>
64
65   <!--
66       Maven Site Configuration
67
68       The following configuration is necessary for maven-site-plugin to
69       correctly identify the correct deployment path for OpenDaylight Maven
70       sites.
71   -->
72   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
73
74   <distributionManagement>
75     <site>
76       <id>opendaylight-site</id>
77       <url>${nexus.site.url}/${project.artifactId}/</url>
78     </site>
79   </distributionManagement>
80 </project>