Bump versions by 0.1.0 for next dev cycle
[netvirt.git] / openstack / 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.6.0-SNAPSHOT</version>
18     <relativePath/>
19   </parent>
20
21   <groupId>org.opendaylight.netvirt</groupId>
22   <artifactId>utils.mdsal-openflow</artifactId>
23   <name>${project.artifactId}</name>
24   <version>1.4.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   <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/netvirt.git</connection>
42     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netvirt.git</developerConnection>
43     <tag>HEAD</tag>
44     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
45   </scm>
46
47   <properties>
48     <openflowplugin.version>0.4.0-SNAPSHOT</openflowplugin.version>
49   </properties>
50
51   <dependencies>
52     <!-- controller dependencies -->
53     <dependency>
54       <groupId>org.opendaylight.controller.model</groupId>
55       <artifactId>model-inventory</artifactId>
56     </dependency>
57     <!-- mdsal dependencies -->
58     <dependency>
59       <groupId>org.opendaylight.mdsal.model</groupId>
60       <artifactId>ietf-inet-types-2013-07-15</artifactId>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.mdsal.model</groupId>
64       <artifactId>ietf-inet-types-2013-07-15</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.mdsal.model</groupId>
68       <artifactId>ietf-yang-types-20130715</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.mdsal.model</groupId>
72       <artifactId>opendaylight-l2-types</artifactId>
73     </dependency>
74     <!-- openflowplugin dependencies -->
75     <dependency>
76       <groupId>org.opendaylight.openflowplugin.model</groupId>
77       <artifactId>model-flow-base</artifactId>
78       <version>${openflowplugin.version}</version>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.openflowplugin</groupId>
82       <artifactId>openflowjava-extension-nicira</artifactId>
83       <version>${openflowplugin.version}</version>
84     </dependency>
85     <dependency>
86       <groupId>org.opendaylight.openflowplugin</groupId>
87       <artifactId>openflowplugin-extension-api</artifactId>
88       <version>${openflowplugin.version}</version>
89     </dependency>
90     <dependency>
91       <groupId>org.opendaylight.openflowplugin</groupId>
92       <artifactId>openflowplugin-extension-nicira</artifactId>
93       <version>${openflowplugin.version}</version>
94     </dependency>
95     <!-- testing dependencies -->
96     <dependency>
97       <groupId>junit</groupId>
98       <artifactId>junit</artifactId>
99       <scope>test</scope>
100     </dependency>
101   </dependencies>
102   <build>
103     <plugins>
104       <plugin>
105         <groupId>org.apache.felix</groupId>
106         <artifactId>maven-bundle-plugin</artifactId>
107         <extensions>true</extensions>
108         <configuration>
109           <instructions>
110             <Export-Package>
111               org.opendaylight.netvirt.utils.mdsal.openflow
112             </Export-Package>
113           </instructions>
114         </configuration>
115       </plugin>
116     </plugins>
117   </build>
118
119   <!--
120       Maven Site Configuration
121
122       The following configuration is necessary for maven-site-plugin to
123       correctly identify the correct deployment path for OpenDaylight Maven
124       sites.
125   -->
126   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
127
128   <distributionManagement>
129     <site>
130       <id>opendaylight-site</id>
131       <url>${nexus.site.url}/${project.artifactId}/</url>
132     </site>
133   </distributionManagement>
134 </project>