Fix intermittent testOwnerChangesOnPeerAvailabilityChanges failure
[controller.git] / opendaylight / config / netty-timer-config / 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.controller</groupId>
7     <artifactId>config-plugin-parent</artifactId>
8     <version>0.8.0-SNAPSHOT</version>
9     <relativePath>../config-plugin-parent</relativePath>
10   </parent>
11   <artifactId>netty-timer-config</artifactId>
12   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
14   <description>Configuration Wrapper around netty's timer</description>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>config-api</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>netty-config-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>threadpool-config-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>mockito-configuration</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.slf4j</groupId>
35       <artifactId>slf4j-api</artifactId>
36     </dependency>
37
38     <!--test dependencies -->
39     <dependency>
40       <groupId>junit</groupId>
41       <artifactId>junit</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller</groupId>
46       <artifactId>config-manager</artifactId>
47       <type>test-jar</type>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>config-manager</artifactId>
53       <scope>test</scope>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller</groupId>
57       <artifactId>config-util</artifactId>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>threadpool-config-impl</artifactId>
63       <scope>test</scope>
64     </dependency>
65
66   </dependencies>
67
68   <build>
69     <plugins>
70       <plugin>
71         <groupId>org.apache.felix</groupId>
72         <artifactId>maven-bundle-plugin</artifactId>
73         <extensions>true</extensions>
74         <configuration>
75           <instructions>
76             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
77             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.timer.rev131119.*,</Export-Package>
78           </instructions>
79         </configuration>
80       </plugin>
81       <plugin>
82         <groupId>org.opendaylight.yangtools</groupId>
83         <artifactId>yang-maven-plugin</artifactId>
84       </plugin>
85     </plugins>
86   </build>
87
88   <distributionManagement>
89     <site>
90       <id>${project.artifactId}</id>
91       <name>NETTY-TIMER-CONFIG Module site</name>
92       <url>${basedir}/target/site/${project.artifactId}</url>
93     </site>
94   </distributionManagement>
95 </project>