Modify config Module impls to co-exist with blueprint
[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   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>org.opendaylight.controller</groupId>
9     <artifactId>config-plugin-parent</artifactId>
10     <version>0.5.0-SNAPSHOT</version>
11     <relativePath>../config-plugin-parent</relativePath>
12   </parent>
13   <artifactId>netty-threadgroup-config</artifactId>
14   <packaging>bundle</packaging>
15   <name>${project.artifactId}</name>
16   <description>Configuration Wrapper around netty's event group</description>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>config-api</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>netty-config-api</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.yangtools</groupId>
29       <artifactId>mockito-configuration</artifactId>
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       <type>test-jar</type>
46       <scope>test</scope>
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
59   </dependencies>
60
61   <build>
62     <plugins>
63       <plugin>
64         <groupId>org.apache.felix</groupId>
65         <artifactId>maven-bundle-plugin</artifactId>
66         <extensions>true</extensions>
67         <configuration>
68           <instructions>
69             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
70             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.threadgroup.rev131107.*,</Export-Package>
71           </instructions>
72         </configuration>
73       </plugin>
74
75       <plugin>
76         <groupId>org.opendaylight.yangtools</groupId>
77         <artifactId>yang-maven-plugin</artifactId>
78       </plugin>
79     </plugins>
80   </build>
81
82   <distributionManagement>
83     <site>
84       <id>${project.artifactId}</id>
85       <name>NETTY-THREADGROUP-CONFIG Module site</name>
86       <url>${basedir}/target/site/${project.artifactId}</url>
87     </site>
88   </distributionManagement>
89
90 </project>