2e7777f91b6e2f4d5badf53bfd30c6f9fd4ef008
[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.4-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             <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.yangtools</groupId>
60             <artifactId>mockito-configuration</artifactId>
61         </dependency>
62
63     </dependencies>
64
65     <build>
66         <plugins>
67
68             <plugin>
69                 <groupId>org.opendaylight.yangtools</groupId>
70                 <artifactId>yang-maven-plugin</artifactId>
71             </plugin>
72
73
74             <plugin>
75                 <groupId>org.apache.felix</groupId>
76                 <artifactId>maven-bundle-plugin</artifactId>
77                 <extensions>true</extensions>
78                 <configuration>
79                     <instructions>
80                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
81                         <Export-Package>
82                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.threadgroup.rev131107.*,
83                         </Export-Package>
84                     </instructions>
85                 </configuration>
86             </plugin>
87         </plugins>
88     </build>
89
90     <distributionManagement>
91         <site>
92             <id>${project.artifactId}</id>
93             <name>NETTY-THREADGROUP-CONFIG Module site</name>
94             <url>${basedir}/target/site/${project.artifactId}</url>
95         </site>
96     </distributionManagement>
97
98 </project>