Bump versions by x.(y+1).z for next dev cycle
[genius.git] / mdsalutil / mdsalutil-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.6.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>mdsalutil-impl</artifactId>
22   <version>0.6.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>org.opendaylight.controller</groupId>
31       <artifactId>sal-binding-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.openflowplugin.model</groupId>
35       <artifactId>model-flow-base</artifactId>
36       <version>${openflowplugin.version}</version>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.serviceutils</groupId>
40       <artifactId>tools-api</artifactId>
41       <version>0.3.0-SNAPSHOT</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.genius</groupId>
45       <artifactId>mdsalutil-api</artifactId>
46       <version>0.6.0-SNAPSHOT</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.openflowplugin.model</groupId>
50       <artifactId>model-flow-service</artifactId>
51       <version>${openflowplugin.version}</version>
52     </dependency>
53     <dependency>
54       <groupId>javax.inject</groupId>
55       <artifactId>javax.inject</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.infrautils</groupId>
59       <artifactId>diagstatus-api</artifactId>
60       <version>${genius.infrautils.version}</version>
61     </dependency>
62     <dependency>
63       <groupId>org.opendaylight.controller</groupId>
64       <!-- used (only) by DatastoreServiceStatusProvider -->
65       <artifactId>sal-distributed-datastore</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.serviceutils</groupId>
69       <artifactId>upgrade</artifactId>
70       <version>0.3.0-SNAPSHOT</version>
71     </dependency>
72     <dependency>
73       <groupId>org.ops4j.pax.cdi</groupId>
74       <artifactId>pax-cdi-api</artifactId>
75       <optional>true</optional>
76     </dependency>
77     <!--  TEST Dependencies -->
78     <dependency>
79       <groupId>com.google.truth</groupId>
80       <artifactId>truth</artifactId>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.awaitility</groupId>
85       <artifactId>awaitility</artifactId>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.opendaylight.infrautils</groupId>
90       <artifactId>infrautils-testutils</artifactId>
91       <version>${genius.infrautils.version}</version>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.powermock</groupId>
96       <artifactId>powermock-module-junit4</artifactId>
97       <scope>test</scope>
98     </dependency>
99     <dependency>
100       <groupId>org.powermock</groupId>
101       <artifactId>powermock-api-mockito</artifactId>
102       <scope>test</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.opendaylight.controller</groupId>
106       <artifactId>sal-binding-broker-impl</artifactId>
107       <scope>test</scope>
108     </dependency>
109     <dependency>
110       <groupId>org.opendaylight.controller</groupId>
111       <artifactId>sal-binding-broker-impl</artifactId>
112       <scope>test</scope>
113       <type>test-jar</type>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.controller</groupId>
117       <artifactId>sal-test-model</artifactId>
118       <scope>test</scope>
119     </dependency>
120     <dependency>
121       <groupId>${project.groupId}</groupId>
122       <artifactId>mdsalutil-api</artifactId>
123       <version>${project.version}</version>
124     </dependency>
125   </dependencies>
126   <build>
127     <pluginManagement>
128       <plugins>
129         <plugin>
130           <artifactId>maven-checkstyle-plugin</artifactId>
131           <dependencies>
132             <dependency>
133               <groupId>org.opendaylight.genius</groupId>
134               <artifactId>checkstyle</artifactId>
135               <version>${project.version}</version>
136             </dependency>
137           </dependencies>
138           <executions>
139             <execution>
140               <id>check-databroker</id>
141               <goals>
142                 <goal>check</goal>
143               </goals>
144               <phase>process-sources</phase>
145               <configuration>
146                 <configLocation>databroker-checks.xml</configLocation>
147                 <includeResources>false</includeResources>
148                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
149                 <includeTestResources>false</includeTestResources>
150                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
151                 <failsOnError>true</failsOnError>
152                 <consoleOutput>true</consoleOutput>
153               </configuration>
154             </execution>
155           </executions>
156         </plugin>
157       </plugins>
158     </pluginManagement>
159     <plugins>
160       <plugin>
161         <groupId>org.apache.aries.blueprint</groupId>
162         <artifactId>blueprint-maven-plugin</artifactId>
163       </plugin>
164       <plugin>
165         <groupId>org.codehaus.mojo</groupId>
166         <artifactId>build-helper-maven-plugin</artifactId>
167         <executions>
168           <execution>
169             <id>attach-artifacts</id>
170             <goals>
171               <goal>attach-artifact</goal>
172             </goals>
173             <phase>package</phase>
174             <configuration>
175               <artifacts>
176                 <artifact>
177                   <file>${project.build.directory}/classes/initial/genius-mdsalutil-config.xml</file>
178                   <type>xml</type>
179                   <classifier>config</classifier>
180                 </artifact>
181               </artifacts>
182             </configuration>
183           </execution>
184         </executions>
185       </plugin>
186     </plugins>
187   </build>
188 </project>