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