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