Merge "BUG-7758: Fix creation of FLAT and VLAN networks with the same parent"
[genius.git] / arputil / arputil-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2016 Ericsson India Global Services Pvt Ltd. 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"
10   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11   <modelVersion>4.0.0</modelVersion>
12
13   <parent>
14     <groupId>org.opendaylight.genius</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.2.0-SNAPSHOT</version>
17     <relativePath>../../commons/config-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>arputil-impl</artifactId>
22   <version>0.2.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>${project.groupId}</groupId>
28       <artifactId>arputil-api</artifactId>
29       <version>${project.version}</version>
30     </dependency>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>interfacemanager-api</artifactId>
34       <version>${project.version}</version>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>sal-binding-api</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.mdsal</groupId>
42       <artifactId>yang-binding</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.yangtools</groupId>
46       <artifactId>yang-common</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>${project.groupId}</groupId>
50       <artifactId>mdsalutil-api</artifactId>
51       <version>${project.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.mdsal.model</groupId>
55       <artifactId>yang-ext</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.mdsal.model</groupId>
59       <artifactId>ietf-inet-types-2013-07-15</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.mdsal.model</groupId>
63       <artifactId>ietf-yang-types-20130715</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.mdsal.model</groupId>
67       <artifactId>ietf-interfaces</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.mdsal.model</groupId>
71       <artifactId>iana-if-type-2014-05-08</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.openflowplugin.model</groupId>
75       <artifactId>model-flow-base</artifactId>
76       <version>${openflowplugin.version}</version>
77     </dependency>
78     <dependency>
79       <groupId>org.opendaylight.openflowplugin.model</groupId>
80       <artifactId>model-flow-service</artifactId>
81       <version>${openflowplugin.version}</version>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.infrautils</groupId>
85       <artifactId>counters-api</artifactId>
86       <version>${genius.infrautils.version}</version>
87     </dependency>
88     <dependency>
89       <groupId>javax.inject</groupId>
90       <artifactId>javax.inject</artifactId>
91     </dependency>
92     <!-- Testing Dependencies -->
93     <dependency>
94       <groupId>org.opendaylight.controller</groupId>
95       <artifactId>sal-binding-broker-impl</artifactId>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>sal-binding-broker-impl</artifactId>
101       <version>${mdsal.version}</version>
102       <scope>test</scope>
103       <type>test-jar</type>
104     </dependency>
105     <dependency>
106       <groupId>junit</groupId>
107       <artifactId>junit</artifactId>
108       <scope>test</scope>
109     </dependency>
110
111     <dependency>
112       <groupId>org.mockito</groupId>
113       <artifactId>mockito-core</artifactId>
114       <scope>test</scope>
115     </dependency>
116   </dependencies>
117   <build>
118     <plugins>
119       <plugin>
120         <groupId>org.apache.aries.blueprint</groupId>
121         <artifactId>blueprint-maven-plugin</artifactId>
122       </plugin>
123       <plugin>
124         <groupId>org.apache.maven.plugins</groupId>
125         <artifactId>maven-checkstyle-plugin</artifactId>
126         <configuration>
127           <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
128         </configuration>
129       </plugin>
130     </plugins>
131   </build>
132 </project>