Use odlparent checkstyle
[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.mdsal</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.1-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
44   <dependencyManagement>
45     <dependencies>
46       <dependency>
47         <groupId>org.opendaylight.mdsal</groupId>
48         <artifactId>mdsal-artifacts</artifactId>
49         <version>2.0.0-SNAPSHOT</version>
50         <type>pom</type>
51         <scope>import</scope>
52       </dependency>
53       <dependency>
54         <groupId>org.opendaylight.mdsal.model</groupId>
55         <artifactId>mdsal-model-artifacts</artifactId>
56         <version>0.8.0-SNAPSHOT</version>
57         <type>pom</type>
58         <scope>import</scope>
59       </dependency>
60     </dependencies>
61   </dependencyManagement>
62
63   <dependencies>
64     <dependency>
65       <groupId>org.opendaylight.mdsal.model</groupId>
66       <artifactId>ietf-topology</artifactId>
67     </dependency>
68     <dependency>
69       <groupId>org.opendaylight.mdsal.model</groupId>
70       <artifactId>yang-ext</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.mdsal.model</groupId>
74       <artifactId>ietf-inet-types</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.mdsal.model</groupId>
78       <artifactId>ietf-yang-types-20130715</artifactId>
79     </dependency>
80     <dependency>
81       <groupId>org.opendaylight.mdsal.model</groupId>
82       <artifactId>opendaylight-l2-types</artifactId>
83     </dependency>
84     <dependency>
85       <groupId>org.opendaylight.yangtools</groupId>
86       <artifactId>yang-common</artifactId>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.yangtools</groupId>
90       <artifactId>concepts</artifactId>
91     </dependency>
92     <dependency>
93       <groupId>com.google.guava</groupId>
94       <artifactId>guava</artifactId>
95     </dependency>
96   </dependencies>
97   <build>
98     <plugins>
99       <plugin>
100         <groupId>org.apache.maven.plugins</groupId>
101         <artifactId>maven-checkstyle-plugin</artifactId>
102         <configuration>
103           <failsOnError>true</failsOnError>
104         </configuration>
105       </plugin>
106     </plugins>
107   </build>
108
109 </project>