Merge "Fetch managed node (bridge) details and augment to operational data store"
[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     <artifactId>commons</artifactId>
16     <groupId>org.opendaylight.ovsdb</groupId>
17     <version>1.3.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.1.0-SNAPSHOT</version>
24   <packaging>jar</packaging>
25
26   <dependencies>
27     <!-- Yang Models -->
28     <dependency>
29       <groupId>org.opendaylight.yangtools.model</groupId>
30       <artifactId>ietf-inet-types</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller.model</groupId>
34       <artifactId>model-inventory</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller.model</groupId>
38       <artifactId>model-flow-base</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.yangtools.model</groupId>
42       <artifactId>ietf-yang-types</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools.model</groupId>
46       <artifactId>opendaylight-l2-types</artifactId>
47     </dependency>
48     <!-- Controller Dependencies -->
49     <dependency>
50       <groupId>org.opendaylight.openflowplugin</groupId>
51       <artifactId>openflowjava-extension-nicira</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.openflowplugin</groupId>
55       <artifactId>openflowplugin-extension-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.openflowplugin</groupId>
59       <artifactId>openflowplugin-extension-nicira</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>com.google.guava</groupId>
63       <artifactId>guava</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.slf4j</groupId>
67       <artifactId>slf4j-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>junit</groupId>
71       <artifactId>junit</artifactId>
72       <scope>test</scope>
73     </dependency>
74   </dependencies>
75   <build>
76     <plugins>
77       <plugin>
78         <groupId>org.apache.maven.plugins</groupId>
79         <artifactId>maven-checkstyle-plugin</artifactId>
80       </plugin>
81       <plugin>
82         <groupId>org.jacoco</groupId>
83         <artifactId>jacoco-maven-plugin</artifactId>
84       </plugin>
85     </plugins>
86   </build>
87 </project>