a6c10dfa53f28565fb3e3690bb91ee0b25788946
[ovsdb.git] / schemas / openvswitch / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 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
14   <parent>
15     <groupId>org.opendaylight.odlparent</groupId>
16     <artifactId>odlparent</artifactId>
17     <version>1.7.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>schema.openvswitch</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <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>
26   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
27   <licenses>
28     <license>
29       <name>Eclipse Public License v1.0</name>
30       <url>http://www.eclipse.org/legal/epl-v10.html</url>
31     </license>
32   </licenses>
33   <developers>
34     <developer>
35       <name>Sam Hague</name>
36       <email>shague@gmail.com</email>
37       <url>https://github.com/shague</url>
38     </developer>
39   </developers>
40   <scm>
41     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <dependencies>
48     <dependency>
49       <groupId>org.opendaylight.ovsdb</groupId>
50       <artifactId>library</artifactId>
51       <version>${project.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>junit</groupId>
55       <artifactId>junit</artifactId>
56       <scope>test</scope>
57     </dependency>
58   </dependencies>
59
60   <build>
61     <plugins>
62       <plugin>
63         <groupId>org.apache.felix</groupId>
64         <artifactId>maven-bundle-plugin</artifactId>
65         <extensions>true</extensions>
66         <configuration>
67           <instructions>
68             <Embed-Transitive>true</Embed-Transitive>
69             <Export-Package>org.opendaylight.ovsdb.schema.openvswitch</Export-Package>
70           </instructions>
71         </configuration>
72       </plugin>
73     </plugins>
74   </build>
75 </project>