Bump versions by x.(y+1).z for next dev cycle
[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>binding-parent</artifactId>
16     <version>0.10.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>arputil-impl</artifactId>
22   <version>0.10.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: genius :: ${project.artifactId}</name>
27
28   <dependencies>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>arputil-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>interfacemanager-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.mdsal</groupId>
39       <artifactId>mdsal-binding-util</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal</groupId>
43       <artifactId>yang-binding</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>yang-common</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>mdsalutil-api</artifactId>
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.binding.model.ietf</groupId>
59       <artifactId>rfc6991</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
63       <artifactId>rfc7223</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.mdsal.binding.model.iana</groupId>
67       <artifactId>iana-if-type</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.openflowplugin.model</groupId>
71       <artifactId>model-flow-base</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.openflowplugin.model</groupId>
75       <artifactId>model-flow-service</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.infrautils</groupId>
79       <artifactId>metrics-api</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.infrautils</groupId>
83       <artifactId>inject</artifactId>
84     </dependency>
85     <dependency>
86       <groupId>javax.inject</groupId>
87       <artifactId>javax.inject</artifactId>
88       <scope>provided</scope>
89       <optional>true</optional>
90     </dependency>
91     <!-- Testing Dependencies -->
92     <dependency>
93       <groupId>org.opendaylight.genius</groupId>
94       <artifactId>testutils</artifactId>
95       <version>${project.version}</version>
96       <scope>test</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.genius</groupId>
100       <artifactId>mdsal-testutils</artifactId>
101       <version>${project.version}</version>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.apache.aries.blueprint</groupId>
106       <artifactId>blueprint-maven-plugin-annotation</artifactId>
107       <optional>true</optional>
108     </dependency>
109   </dependencies>
110   <build>
111     <pluginManagement>
112       <plugins>
113         <plugin>
114           <artifactId>maven-checkstyle-plugin</artifactId>
115           <dependencies>
116             <dependency>
117               <groupId>org.opendaylight.genius</groupId>
118               <artifactId>checkstyle</artifactId>
119               <version>${project.version}</version>
120             </dependency>
121           </dependencies>
122           <executions>
123             <execution>
124               <id>check-databroker</id>
125               <goals>
126                 <goal>check</goal>
127               </goals>
128               <phase>process-sources</phase>
129               <configuration>
130                 <configLocation>databroker-checks.xml</configLocation>
131                 <includeResources>false</includeResources>
132                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
133                 <includeTestResources>false</includeTestResources>
134                 <sourceDirectories>
135                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> -->
136                 </sourceDirectories>
137                 <failsOnError>true</failsOnError>
138                 <consoleOutput>true</consoleOutput>
139               </configuration>
140             </execution>
141           </executions>
142         </plugin>
143       </plugins>
144     </pluginManagement>
145     <plugins>
146       <plugin>
147         <groupId>org.apache.aries.blueprint</groupId>
148         <artifactId>blueprint-maven-plugin</artifactId>
149         <configuration>
150           <scanPaths>org.opendaylight.genius.arputil.internal</scanPaths>
151         </configuration>
152       </plugin>
153     </plugins>
154   </build>
155 </project>