240130c5dafd4d41f1caf7a5a28a07f83364a82d
[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.9.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.9.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.openflowplugin.model</groupId>
31       <artifactId>model-flow-base</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.serviceutils</groupId>
35       <artifactId>tools-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.genius</groupId>
39       <artifactId>mdsalutil-api</artifactId>
40       <version>0.9.0-SNAPSHOT</version>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.openflowplugin.model</groupId>
44       <artifactId>model-flow-service</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>javax.inject</groupId>
48       <artifactId>javax.inject</artifactId>
49       <scope>provided</scope>
50       <optional>true</optional>
51     </dependency>
52     <dependency>
53       <groupId>javax.annotation</groupId>
54       <artifactId>javax.annotation-api</artifactId>
55       <optional>true</optional>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.infrautils</groupId>
59       <artifactId>diagstatus-api</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <!-- used (only) by DatastoreServiceStatusProvider -->
64       <artifactId>sal-distributed-datastore</artifactId>
65     </dependency>
66     <dependency>
67       <groupId>org.apache.aries.blueprint</groupId>
68       <artifactId>blueprint-maven-plugin-annotation</artifactId>
69       <optional>true</optional>
70     </dependency>
71
72     <!--  TEST Dependencies -->
73     <dependency>
74       <groupId>com.google.truth</groupId>
75       <artifactId>truth</artifactId>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.awaitility</groupId>
80       <artifactId>awaitility</artifactId>
81       <scope>test</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.opendaylight.infrautils</groupId>
85       <artifactId>infrautils-testutils</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>org.opendaylight.mdsal</groupId>
89       <artifactId>mdsal-binding-test-utils</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.opendaylight.mdsal</groupId>
94       <artifactId>mdsal-binding-dom-adapter</artifactId>
95       <scope>test</scope>
96       <type>test-jar</type>
97     </dependency>
98     <dependency>
99       <groupId>org.opendaylight.controller</groupId>
100       <artifactId>sal-test-model</artifactId>
101       <scope>test</scope>
102     </dependency>
103     <dependency>
104       <groupId>${project.groupId}</groupId>
105       <artifactId>mdsalutil-api</artifactId>
106     </dependency>
107   </dependencies>
108   <build>
109     <pluginManagement>
110       <plugins>
111         <plugin>
112           <artifactId>maven-checkstyle-plugin</artifactId>
113           <dependencies>
114             <dependency>
115               <groupId>org.opendaylight.genius</groupId>
116               <artifactId>checkstyle</artifactId>
117               <version>${project.version}</version>
118             </dependency>
119           </dependencies>
120           <executions>
121             <execution>
122               <id>check-databroker</id>
123               <goals>
124                 <goal>check</goal>
125               </goals>
126               <phase>process-sources</phase>
127               <configuration>
128                 <configLocation>databroker-checks.xml</configLocation>
129                 <includeResources>false</includeResources>
130                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
131                 <includeTestResources>false</includeTestResources>
132                 <sourceDirectories>
133                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
134                 </sourceDirectories>
135                 <failsOnError>true</failsOnError>
136                 <consoleOutput>true</consoleOutput>
137               </configuration>
138             </execution>
139           </executions>
140         </plugin>
141       </plugins>
142     </pluginManagement>
143     <plugins>
144       <plugin>
145         <groupId>org.apache.aries.blueprint</groupId>
146         <artifactId>blueprint-maven-plugin</artifactId>
147       </plugin>
148     </plugins>
149   </build>
150 </project>