a69df5530677a3e38d50107db232b38d9f3dd702
[netvirt.git] / karaf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2015 Red Hat, 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 <project xmlns="http://maven.apache.org/POM/4.0.0"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13   <parent>
14     <groupId>org.opendaylight.controller</groupId>
15     <artifactId>karaf-parent</artifactId>
16     <version>1.7.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <groupId>org.opendaylight.netvirt</groupId>
21   <artifactId>karaf</artifactId>
22   <version>1.3.0-SNAPSHOT</version>
23   <name>${project.artifactId}</name>
24   <prerequisites>
25     <maven>3.1.1</maven>
26   </prerequisites>
27   <properties>
28     <!-- uncomment the next line if you want karaf to automatically load the feature -->
29     <!-- <karaf.localFeature>odl-ovsdb-openstack</karaf.localFeature> -->
30   </properties>
31   <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>
32   <licenses>
33     <license>
34       <name>Eclipse Public License v1.0</name>
35       <url>http://www.eclipse.org/legal/epl-v10.html</url>
36     </license>
37   </licenses>
38   <developers>
39     <developer>
40       <name>Sam Hague</name>
41       <email>shague@gmail.com</email>
42       <url>https://github.com/shague</url>
43     </developer>
44   </developers>
45   <scm>
46     <connection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</connection>
47     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
48     <tag>HEAD</tag>
49     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
50   </scm>
51   <dependencyManagement>
52     <dependencies>
53       <dependency>
54         <groupId>${project.groupId}</groupId>
55         <artifactId>netvirt-artifacts</artifactId>
56         <version>${project.version}</version>
57         <type>pom</type>
58         <scope>import</scope>
59       </dependency>
60     </dependencies>
61   </dependencyManagement>
62   <dependencies>
63     <dependency>
64       <!-- scope is compile so all features (there is only one) are installed
65       into startup.properties and the feature repo itself is not installed -->
66       <groupId>org.apache.karaf.features</groupId>
67       <artifactId>framework</artifactId>
68       <type>kar</type>
69     </dependency>
70
71     <dependency>
72       <groupId>${project.groupId}</groupId>
73       <artifactId>features-netvirt</artifactId>
74       <version>${project.version}</version>
75       <classifier>features</classifier>
76       <type>xml</type>
77       <scope>runtime</scope>
78     </dependency>
79   </dependencies>
80
81   <build>
82     <plugins>
83       <!-- DO NOT deploy the karaf artifact -->
84       <plugin>
85         <groupId>org.apache.maven.plugins</groupId>
86         <artifactId>maven-deploy-plugin</artifactId>
87         <configuration>
88           <skip>true</skip>
89         </configuration>
90       </plugin>
91     </plugins>
92   </build>
93
94   <!--
95       Maven Site Configuration
96
97       The following configuration is necessary for maven-site-plugin to
98       correctly identify the correct deployment path for OpenDaylight Maven
99       sites.
100   -->
101   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
102
103   <distributionManagement>
104     <site>
105       <id>opendaylight-site</id>
106       <url>${nexus.site.url}/${project.artifactId}/</url>
107     </site>
108   </distributionManagement>
109 </project>