Merge "Bug fix for 3545"
[ovsdb.git] / southbound / southbound-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (c) 2014 Cisco Systems, 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10   <parent>
11     <groupId>org.opendaylight.yangtools</groupId>
12     <artifactId>binding-parent</artifactId>
13     <version>0.8.0-SNAPSHOT</version>
14     <relativePath/>
15   </parent>
16
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>southbound-api</artifactId>
20   <version>1.2.0-SNAPSHOT</version>
21   <packaging>bundle</packaging>
22   <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>
23   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
24   <licenses>
25     <license>
26       <name>Eclipse Public License v1.0</name>
27       <url>http://www.eclipse.org/legal/epl-v10.html</url>
28     </license>
29   </licenses>
30   <developers>
31     <developer>
32       <name>Sam Hague</name>
33       <email>shague@gmail.com</email>
34       <url>https://github.com/shague</url>
35     </developer>
36   </developers>
37   <scm>
38     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
39     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
40     <tag>HEAD</tag>
41     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
42   </scm>
43   <dependencies>
44     <dependency>
45       <groupId>org.opendaylight.yangtools.model</groupId>
46       <artifactId>ietf-topology</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools.model</groupId>
50       <artifactId>yang-ext</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools.model</groupId>
54       <artifactId>ietf-inet-types</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.yangtools.model</groupId>
58       <artifactId>ietf-yang-types-20130715</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.yangtools.model</groupId>
62       <artifactId>opendaylight-l2-types</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>org.opendaylight.yangtools</groupId>
66       <artifactId>yang-common</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.yangtools</groupId>
70       <artifactId>concepts</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>com.google.guava</groupId>
74       <artifactId>guava</artifactId>
75     </dependency>
76   </dependencies>
77   <build>
78     <plugins>
79       <plugin>
80         <groupId>org.apache.maven.plugins</groupId>
81         <artifactId>maven-checkstyle-plugin</artifactId>
82         <configuration>
83           <configLocation>
84             ${project.basedir}/../../commons/parent/src/main/resources/ovsdb_checks.xml
85           </configLocation>
86           <failsOnError>true</failsOnError>
87           <includes>**/*.java,**/*.xml,**/*.ini,**/*.sh,**/*.bat</includes>
88           <excludes>**/yang/</excludes>
89         </configuration>
90       </plugin>
91     </plugins>
92   </build>
93
94 </project>