Remove <prerequisites> from pom.xml to avoid WARNING
[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>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>southbound-karaf</artifactId>
18   <version>1.5.0-SNAPSHOT</version>
19   <name>${project.artifactId}</name>
20   <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>
21   <licenses>
22     <license>
23       <name>Eclipse Public License v1.0</name>
24       <url>http://www.eclipse.org/legal/epl-v10.html</url>
25     </license>
26   </licenses>
27   <developers>
28     <developer>
29       <name>Sam Hague</name>
30       <email>shague@gmail.com</email>
31       <url>https://github.com/shague</url>
32     </developer>
33   </developers>
34   <scm>
35     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
36     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
37     <tag>HEAD</tag>
38     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
39   </scm>
40   <properties>
41     <karaf.localFeature>odl-ovsdb-southbound-impl-ui</karaf.localFeature>
42   </properties>
43   <dependencyManagement>
44     <dependencies>
45       <dependency>
46         <groupId>${project.groupId}</groupId>
47         <artifactId>southbound-artifacts</artifactId>
48         <version>${project.version}</version>
49         <type>pom</type>
50         <scope>import</scope>
51       </dependency>
52     </dependencies>
53   </dependencyManagement>
54   <dependencies>
55     <dependency>
56       <!-- scope is compile so all features (there is only one) are installed
57       into startup.properties and the feature repo itself is not installed -->
58       <groupId>org.apache.karaf.features</groupId>
59       <artifactId>framework</artifactId>
60       <type>kar</type>
61     </dependency>
62
63     <dependency>
64       <groupId>${project.groupId}</groupId>
65       <artifactId>southbound-features</artifactId>
66       <classifier>features</classifier>
67       <type>xml</type>
68       <scope>runtime</scope>
69     </dependency>
70   </dependencies>
71
72   <build>
73     <plugins>
74       <!-- DO NOT deploy the karaf artifact -->
75       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-deploy-plugin</artifactId>
78         <configuration>
79           <skip>true</skip>
80         </configuration>
81       </plugin>
82     </plugins>
83   </build>
84
85   <!--
86       Maven Site Configuration
87
88       The following configuration is necessary for maven-site-plugin to
89       correctly identify the correct deployment path for OpenDaylight Maven
90       sites.
91   -->
92   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
93
94   <distributionManagement>
95     <site>
96       <id>opendaylight-site</id>
97       <url>${nexus.site.url}/${project.artifactId}/</url>
98     </site>
99   </distributionManagement>
100 </project>