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