Adapt DJC delegate to consumer RollbackCallable
[genius.git] / mdsalutil / mdsalutil-api / 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.4.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</relativePath>
18   </parent>
19
20   <groupId>org.opendaylight.genius</groupId>
21   <artifactId>mdsalutil-api</artifactId>
22   <version>0.4.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.yangtools</groupId>
31       <artifactId>util</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.openflowplugin.model</groupId>
40       <artifactId>model-flow-service</artifactId>
41       <version>${openflowplugin.version}</version>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>liblldp</artifactId>
46       <version>${liblldp.version}</version>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-binding-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.mdsal</groupId>
54       <artifactId>mdsal-eos-binding-api</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.openflowplugin</groupId>
58       <artifactId>openflowplugin-extension-nicira</artifactId>
59       <version>${openflowplugin.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.openflowplugin</groupId>
63       <artifactId>openflowjava-extension-nicira</artifactId>
64       <version>${openflowplugin.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.ovsdb</groupId>
68       <artifactId>hwvtepsouthbound-api</artifactId>
69       <version>${genius.ovsdb.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>org.opendaylight.ovsdb</groupId>
73       <artifactId>utils.config</artifactId>
74       <version>${genius.ovsdb.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>org.opendaylight.infrautils</groupId>
78       <artifactId>counters-api</artifactId>
79       <version>${genius.infrautils.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>org.opendaylight.infrautils</groupId>
83       <artifactId>inject</artifactId>
84       <version>${genius.infrautils.version}</version>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.infrautils</groupId>
88       <artifactId>jobcoordinator-api</artifactId>
89       <version>${genius.infrautils.version}</version>
90     </dependency>
91     <dependency>
92       <groupId>org.opendaylight.infrautils</groupId>
93       <!-- TODO Remove when when DataStoreJobCoordinator is removed -->
94       <artifactId>jobcoordinator-impl</artifactId>
95       <version>${genius.infrautils.version}</version>
96     </dependency>
97     <dependency>
98       <groupId>org.immutables</groupId>
99       <artifactId>value</artifactId>
100     </dependency>
101     <dependency>
102       <groupId>org.osgi</groupId>
103       <artifactId>org.osgi.core</artifactId>
104     </dependency>
105     <dependency>
106       <groupId>org.ops4j.pax.cdi</groupId>
107       <artifactId>pax-cdi-api</artifactId>
108       <optional>true</optional>
109     </dependency>
110
111     <!-- Dependencies with <scope>test -->
112     <dependency>
113       <groupId>org.opendaylight.yangtools</groupId>
114       <artifactId>testutils</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.awaitility</groupId>
119       <artifactId>awaitility</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.opendaylight.mdsal</groupId>
124       <artifactId>mdsal-binding-test-utils</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.opendaylight.infrautils</groupId>
129       <artifactId>infrautils-testutils</artifactId>
130       <version>${genius.infrautils.version}</version>
131       <scope>test</scope>
132     </dependency>
133     <dependency>
134       <groupId>com.google.truth</groupId>
135       <artifactId>truth</artifactId>
136       <scope>test</scope>
137     </dependency>
138     <dependency>
139       <groupId>com.google.guava</groupId>
140       <artifactId>guava-testlib</artifactId>
141     </dependency>
142   </dependencies>
143
144   <build>
145     <plugins>
146       <plugin>
147         <groupId>org.apache.felix</groupId>
148         <artifactId>maven-bundle-plugin</artifactId>
149         <extensions>true</extensions>
150         <configuration>
151           <instructions>
152             <Bundle-Activator>org.opendaylight.genius.datastoreutils.Activator</Bundle-Activator>
153             <Embed-Dependency>utils.config;type=!pom;inline=false</Embed-Dependency>
154             <Embed-Transitive>true</Embed-Transitive>
155           </instructions>
156         </configuration>
157       </plugin>
158       <plugin>
159         <groupId>org.apache.maven.plugins</groupId>
160         <artifactId>maven-jar-plugin</artifactId>
161         <executions>
162           <execution>
163             <goals>
164               <goal>test-jar</goal>
165             </goals>
166           </execution>
167         </executions>
168       </plugin>
169       <plugin>
170         <groupId>org.codehaus.mojo</groupId>
171         <artifactId>findbugs-maven-plugin</artifactId>
172         <configuration>
173           <failOnError>true</failOnError>
174         </configuration>
175       </plugin>
176     </plugins>
177   </build>
178 </project>