Fix intermittent testOwnerChangesOnPeerAvailabilityChanges failure
[controller.git] / opendaylight / config / config-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.mdsal</groupId>
7     <artifactId>binding-parent</artifactId>
8     <version>0.12.0-SNAPSHOT</version>
9     <relativePath/>
10   </parent>
11
12   <groupId>org.opendaylight.controller</groupId>
13   <version>0.8.0-SNAPSHOT</version>
14   <artifactId>config-api</artifactId>
15   <packaging>bundle</packaging>
16   <name>${project.artifactId}</name>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.mdsal</groupId>
21       <artifactId>yang-binding</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.yangtools</groupId>
25       <artifactId>yang-common</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.osgi</groupId>
29       <artifactId>org.osgi.core</artifactId>
30
31       <!-- We are adding generated code which is bound to OSGi, so we need
32            to make sure anyone dependending on this artifact inherits it -->
33       <scope>compile</scope>
34     </dependency>
35       <dependency>
36           <groupId>org.opendaylight.yangtools</groupId>
37           <artifactId>mockito-configuration</artifactId>
38       </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46       </plugin>
47       <plugin>
48         <groupId>org.opendaylight.yangtools</groupId>
49         <artifactId>yang-maven-plugin</artifactId>
50       </plugin>
51     </plugins>
52   </build>
53 </project>