e6300d9d10f6c20394876e15e9688d3540b40725
[controller.git] / opendaylight / config / netty-event-executor-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   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>config-plugin-parent</artifactId>
8     <version>0.7.0-SNAPSHOT</version>
9     <relativePath>../config-plugin-parent</relativePath>
10   </parent>
11   <artifactId>netty-event-executor-config</artifactId>
12   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
14   <description>Configuration Wrapper around netty's event executor</description>
15
16   <dependencies>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>config-api</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>netty-config-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.yangtools</groupId>
27       <artifactId>mockito-configuration</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.slf4j</groupId>
31       <artifactId>slf4j-api</artifactId>
32     </dependency>
33
34     <!--test dependencies -->
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <scope>test</scope>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>config-manager</artifactId>
43       <type>test-jar</type>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>config-manager</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>config-util</artifactId>
54       <scope>test</scope>
55     </dependency>
56
57   </dependencies>
58
59   <build>
60     <plugins>
61       <plugin>
62         <groupId>org.apache.felix</groupId>
63         <artifactId>maven-bundle-plugin</artifactId>
64         <extensions>true</extensions>
65         <configuration>
66           <instructions>
67             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
68             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.eventexecutor.rev131112.*,</Export-Package>
69           </instructions>
70         </configuration>
71       </plugin>
72       <plugin>
73         <groupId>org.opendaylight.yangtools</groupId>
74         <artifactId>yang-maven-plugin</artifactId>
75       </plugin>
76     </plugins>
77   </build>
78
79   <distributionManagement>
80     <site>
81       <id>${project.artifactId}</id>
82       <name>NETTY-EVENT-EXECUTOR-CONFIG Module site</name>
83       <url>${basedir}/target/site/${project.artifactId}</url>
84     </site>
85   </distributionManagement>
86
87 </project>