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