Genius Neon MRI changes
[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.apache.aries.blueprint</groupId>
74       <artifactId>blueprint-maven-plugin-annotation</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       <version>1.6.4</version>
98       <scope>test</scope>
99     </dependency>
100     <dependency>
101       <groupId>org.powermock</groupId>
102       <artifactId>powermock-api-mockito</artifactId>
103       <version>1.6.4</version>
104       <scope>test</scope>
105     </dependency>
106     <dependency>
107      <groupId>org.powermock</groupId>
108      <artifactId>powermock-api-support</artifactId>
109      <version>1.6.4</version>
110      <scope>test</scope>
111    </dependency>
112    <dependency>
113      <groupId>org.powermock</groupId>
114      <artifactId>powermock-reflect</artifactId>
115      <version>1.6.4</version>
116      <scope>test</scope>
117    </dependency>
118    <dependency>
119      <groupId>org.powermock</groupId>
120      <artifactId>powermock-core</artifactId>
121      <version>1.6.4</version>
122      <scope>test</scope>
123    </dependency>
124     <dependency>
125      <groupId>org.javassist</groupId>
126      <artifactId>javassist</artifactId>
127      <version>3.21.0-GA</version>
128      <scope>test</scope>
129    </dependency>
130    <dependency>
131      <groupId>org.mockito</groupId>
132      <artifactId>mockito-core</artifactId>
133      <version>1.10.19</version>
134      <scope>test</scope>
135    </dependency>
136     <dependency>
137       <groupId>org.opendaylight.controller</groupId>
138       <artifactId>sal-binding-broker-impl</artifactId>
139       <scope>test</scope>
140     </dependency>
141     <dependency>
142       <groupId>org.opendaylight.controller</groupId>
143       <artifactId>sal-binding-broker-impl</artifactId>
144       <scope>test</scope>
145       <type>test-jar</type>
146     </dependency>
147     <dependency>
148       <groupId>org.opendaylight.controller</groupId>
149       <artifactId>sal-test-model</artifactId>
150       <scope>test</scope>
151     </dependency>
152     <dependency>
153       <groupId>${project.groupId}</groupId>
154       <artifactId>mdsalutil-api</artifactId>
155       <version>${project.version}</version>
156     </dependency>
157   </dependencies>
158   <build>
159     <pluginManagement>
160       <plugins>
161         <plugin>
162           <artifactId>maven-checkstyle-plugin</artifactId>
163           <dependencies>
164             <dependency>
165               <groupId>org.opendaylight.genius</groupId>
166               <artifactId>checkstyle</artifactId>
167               <version>${project.version}</version>
168             </dependency>
169           </dependencies>
170           <executions>
171             <execution>
172               <id>check-databroker</id>
173               <goals>
174                 <goal>check</goal>
175               </goals>
176               <phase>process-sources</phase>
177               <configuration>
178                 <configLocation>databroker-checks.xml</configLocation>
179                 <includeResources>false</includeResources>
180                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
181                 <includeTestResources>false</includeTestResources>
182                 <sourceDirectories>
183                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
184                 </sourceDirectories>
185                 <failsOnError>true</failsOnError>
186                 <consoleOutput>true</consoleOutput>
187               </configuration>
188             </execution>
189           </executions>
190         </plugin>
191       </plugins>
192     </pluginManagement>
193     <plugins>
194       <plugin>
195         <groupId>org.apache.aries.blueprint</groupId>
196         <artifactId>blueprint-maven-plugin</artifactId>
197       </plugin>
198       <plugin>
199         <groupId>org.codehaus.mojo</groupId>
200         <artifactId>build-helper-maven-plugin</artifactId>
201         <executions>
202           <execution>
203             <id>attach-artifacts</id>
204             <goals>
205               <goal>attach-artifact</goal>
206             </goals>
207             <phase>package</phase>
208             <configuration>
209               <artifacts>
210                 <artifact>
211                   <file>${project.build.directory}/classes/initial/genius-mdsalutil-config.xml</file>
212                   <type>xml</type>
213                   <classifier>config</classifier>
214                 </artifact>
215               </artifacts>
216             </configuration>
217           </execution>
218         </executions>
219       </plugin>
220     </plugins>
221   </build>
222 </project>