Merge "Added config SI for io.netty.util.Timer and config module wrapper for HashedWh...
[controller.git] / opendaylight / config / netty-threadgroup-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
6     <parent>
7         <groupId>org.opendaylight.controller</groupId>
8         <artifactId>config-subsystem</artifactId>
9         <version>0.2.3-SNAPSHOT</version>
10     </parent>
11
12     <modelVersion>4.0.0</modelVersion>
13     <artifactId>netty-threadgroup-config</artifactId>
14     <description>Configuration Wrapper around netty's event group</description>
15     <packaging>bundle</packaging>
16     <name>${project.artifactId}</name>
17     <prerequisites>
18         <maven>3.0.4</maven>
19     </prerequisites>
20
21     <dependencies>
22         <dependency>
23             <groupId>org.opendaylight.controller</groupId>
24             <artifactId>config-api</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.controller</groupId>
28             <artifactId>netty-config-api</artifactId>
29             <version>${project.version}</version>
30         </dependency>
31         <dependency>
32             <groupId>org.slf4j</groupId>
33             <artifactId>slf4j-api</artifactId>
34         </dependency>
35
36         <!--test dependencies -->
37         <dependency>
38             <groupId>junit</groupId>
39             <artifactId>junit</artifactId>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.controller</groupId>
44             <artifactId>config-manager</artifactId>
45             <scope>test</scope>
46             <type>test-jar</type>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.controller</groupId>
50             <artifactId>config-manager</artifactId>
51             <scope>test</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>config-util</artifactId>
56             <scope>test</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.bgpcep</groupId>
60             <artifactId>mockito-configuration</artifactId>
61             <scope>test</scope>
62         </dependency>
63
64     </dependencies>
65
66     <build>
67         <plugins>
68
69             <plugin>
70                 <groupId>org.opendaylight.yangtools</groupId>
71                 <artifactId>yang-maven-plugin</artifactId>
72             </plugin>
73
74
75             <plugin>
76                 <groupId>org.apache.felix</groupId>
77                 <artifactId>maven-bundle-plugin</artifactId>
78                 <extensions>true</extensions>
79                 <configuration>
80                     <instructions>
81                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
82                         <Export-Package>
83                         </Export-Package>
84                         <Import-Package>
85                             com.google.common.base,
86                             io.netty.channel.nio,
87                             org.opendaylight.controller.config.yang.netty,
88                             io.netty.util.concurrent,
89                             org.opendaylight.controller.config.api,
90                             org.opendaylight.controller.config.api.annotations,
91                             org.opendaylight.controller.config.api.runtime,
92                             org.opendaylight.controller.config.spi,
93                             org.slf4j,
94                             org.osgi.framework
95                         </Import-Package>
96                     </instructions>
97                 </configuration>
98             </plugin>
99         </plugins>
100     </build>
101
102     <distributionManagement>
103         <site>
104             <id>${project.artifactId}</id>
105             <name>NETTY-THREADGROUP-CONFIG Module site</name>
106             <url>${basedir}/target/site/${project.artifactId}</url>
107         </site>
108     </distributionManagement>
109
110 </project>