Incrementing versions by 0.1.0 for post-lithium master branch
[netvirt.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     <artifactId>commons</artifactId>
16     <groupId>org.opendaylight.ovsdb</groupId>
17     <version>1.4.0-SNAPSHOT</version>
18     <relativePath>../../commons/parent/pom.xml</relativePath>
19   </parent>
20
21   <artifactId>utils.mdsal-openflow</artifactId>
22   <name>${project.artifactId}</name>
23   <version>1.2.0-SNAPSHOT</version>
24   <packaging>jar</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     <!-- Yang Models -->
49     <dependency>
50       <groupId>org.opendaylight.yangtools.model</groupId>
51       <artifactId>ietf-inet-types</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller.model</groupId>
55       <artifactId>model-inventory</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.openflowplugin.model</groupId>
59       <artifactId>model-flow-base</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.yangtools.model</groupId>
63       <artifactId>ietf-yang-types</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.yangtools.model</groupId>
67       <artifactId>opendaylight-l2-types</artifactId>
68     </dependency>
69     <!-- Controller Dependencies -->
70     <dependency>
71       <groupId>org.opendaylight.openflowplugin</groupId>
72       <artifactId>openflowjava-extension-nicira</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>org.opendaylight.openflowplugin</groupId>
76       <artifactId>openflowplugin-extension-api</artifactId>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.openflowplugin</groupId>
80       <artifactId>openflowplugin-extension-nicira</artifactId>
81     </dependency>
82     <dependency>
83       <groupId>com.google.guava</groupId>
84       <artifactId>guava</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.slf4j</groupId>
88       <artifactId>slf4j-api</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>junit</groupId>
92       <artifactId>junit</artifactId>
93       <scope>test</scope>
94     </dependency>
95   </dependencies>
96   <build>
97     <plugins>
98       <plugin>
99         <groupId>org.apache.maven.plugins</groupId>
100         <artifactId>maven-checkstyle-plugin</artifactId>
101       </plugin>
102       <plugin>
103         <groupId>org.jacoco</groupId>
104         <artifactId>jacoco-maven-plugin</artifactId>
105       </plugin>
106     </plugins>
107   </build>
108 </project>