Integrate controller-2.0.1
[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     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.controller</groupId>
93       <artifactId>sal-test-model</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>${project.groupId}</groupId>
97       <artifactId>mdsalutil-api</artifactId>
98     </dependency>
99   </dependencies>
100   <build>
101     <pluginManagement>
102       <plugins>
103         <plugin>
104           <artifactId>maven-checkstyle-plugin</artifactId>
105           <dependencies>
106             <dependency>
107               <groupId>org.opendaylight.genius</groupId>
108               <artifactId>checkstyle</artifactId>
109               <version>${project.version}</version>
110             </dependency>
111           </dependencies>
112           <executions>
113             <execution>
114               <id>check-databroker</id>
115               <goals>
116                 <goal>check</goal>
117               </goals>
118               <phase>process-sources</phase>
119               <configuration>
120                 <configLocation>databroker-checks.xml</configLocation>
121                 <includeResources>false</includeResources>
122                 <includeTestSourceDirectory>false</includeTestSourceDirectory>
123                 <includeTestResources>false</includeTestResources>
124                 <sourceDirectories>
125                   <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
126                 </sourceDirectories>
127                 <failsOnError>true</failsOnError>
128                 <consoleOutput>true</consoleOutput>
129               </configuration>
130             </execution>
131           </executions>
132         </plugin>
133       </plugins>
134     </pluginManagement>
135     <plugins>
136       <plugin>
137         <groupId>org.apache.aries.blueprint</groupId>
138         <artifactId>blueprint-maven-plugin</artifactId>
139       </plugin>
140     </plugins>
141   </build>
142 </project>