b44c5d83fc6a23912369a888b298f4e98fb0c157
[ovsdb.git] / utils / mdsal-openflow / 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.controller</groupId>
16     <artifactId>config-parent</artifactId>
17     <version>0.5.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.mdsal-openflow</artifactId>
23   <name>${project.artifactId}</name>
24   <version>1.3.0-SNAPSHOT</version>
25   <packaging>jar</packaging>
26   <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>
27   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
28   <licenses>
29     <license>
30       <name>Eclipse Public License v1.0</name>
31       <url>http://www.eclipse.org/legal/epl-v10.html</url>
32     </license>
33   </licenses>
34   <developers>
35     <developer>
36       <name>Sam Hague</name>
37       <email>shague@gmail.com</email>
38       <url>https://github.com/shague</url>
39     </developer>
40   </developers>
41   <scm>
42     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
43     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
44     <tag>HEAD</tag>
45     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
46   </scm>
47
48   <properties>
49     <openflowplugin.version>0.3.0-SNAPSHOT</openflowplugin.version>
50   </properties>
51
52   <dependencies>
53     <!-- controller dependencies -->
54     <dependency>
55       <groupId>org.opendaylight.controller.model</groupId>
56       <artifactId>model-inventory</artifactId>
57     </dependency>
58     <!-- mdsal dependencies -->
59     <dependency>
60       <groupId>org.opendaylight.mdsal.model</groupId>
61       <artifactId>ietf-inet-types</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.mdsal.model</groupId>
65       <artifactId>ietf-yang-types</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.mdsal.model</groupId>
69       <artifactId>opendaylight-l2-types</artifactId>
70     </dependency>
71     <!-- openflowplugin dependencies -->
72     <dependency>
73       <groupId>org.opendaylight.openflowplugin.model</groupId>
74       <artifactId>model-flow-base</artifactId>
75       <version>${openflowplugin.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.openflowplugin</groupId>
79       <artifactId>openflowjava-extension-nicira</artifactId>
80       <version>${openflowplugin.version}</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.openflowplugin</groupId>
84       <artifactId>openflowplugin-extension-api</artifactId>
85       <version>${openflowplugin.version}</version>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.openflowplugin</groupId>
89       <artifactId>openflowplugin-extension-nicira</artifactId>
90       <version>${openflowplugin.version}</version>
91     </dependency>
92     <!-- testing dependencies -->
93     <dependency>
94       <groupId>junit</groupId>
95       <artifactId>junit</artifactId>
96       <scope>test</scope>
97     </dependency>
98   </dependencies>
99   <build>
100     <plugins>
101       <plugin>
102         <groupId>org.apache.felix</groupId>
103         <artifactId>maven-bundle-plugin</artifactId>
104         <extensions>true</extensions>
105         <configuration>
106           <instructions>
107             <Export-Package>
108               org.opendaylight.ovsdb.utils.mdsal.openflow
109             </Export-Package>
110           </instructions>
111         </configuration>
112       </plugin>
113     </plugins>
114   </build>
115 </project>