Merge "Change RpcImplementation contract to asynchronous"
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5     <parent>
6         <groupId>org.opendaylight.controller</groupId>
7         <artifactId>config-plugin-parent</artifactId>
8         <version>0.2.5-SNAPSHOT</version>
9         <relativePath>../config-plugin-parent</relativePath>
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         </dependency>
30         <dependency>
31             <groupId>org.slf4j</groupId>
32             <artifactId>slf4j-api</artifactId>
33         </dependency>
34
35         <!--test dependencies -->
36         <dependency>
37             <groupId>junit</groupId>
38             <artifactId>junit</artifactId>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>org.opendaylight.controller</groupId>
43             <artifactId>config-manager</artifactId>
44             <scope>test</scope>
45             <type>test-jar</type>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.controller</groupId>
49             <artifactId>config-manager</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>config-util</artifactId>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.opendaylight.yangtools</groupId>
59             <artifactId>mockito-configuration</artifactId>
60         </dependency>
61
62     </dependencies>
63
64     <build>
65         <plugins>
66
67             <plugin>
68                 <groupId>org.opendaylight.yangtools</groupId>
69                 <artifactId>yang-maven-plugin</artifactId>
70             </plugin>
71             <plugin>
72                 <groupId>org.apache.felix</groupId>
73                 <artifactId>maven-bundle-plugin</artifactId>
74                 <extensions>true</extensions>
75                 <configuration>
76                     <instructions>
77                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
78                         <Export-Package>
79                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.threadgroup.rev131107.*,
80                         </Export-Package>
81                     </instructions>
82                 </configuration>
83             </plugin>
84         </plugins>
85     </build>
86
87     <distributionManagement>
88         <site>
89             <id>${project.artifactId}</id>
90             <name>NETTY-THREADGROUP-CONFIG Module site</name>
91             <url>${basedir}/target/site/${project.artifactId}</url>
92         </site>
93     </distributionManagement>
94
95 </project>