Merge "Bug 2003: CDS serialization improvements"
[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.3.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   <prerequisites>
16     <maven>3.0.4</maven>
17   </prerequisites>
18
19   <dependencies>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>config-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>netty-config-api</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.yangtools</groupId>
30       <artifactId>mockito-configuration</artifactId>
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       <type>test-jar</type>
47       <scope>test</scope>
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
60   </dependencies>
61
62   <build>
63     <plugins>
64       <plugin>
65         <groupId>org.apache.felix</groupId>
66         <artifactId>maven-bundle-plugin</artifactId>
67         <extensions>true</extensions>
68         <configuration>
69           <instructions>
70             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
71             <Export-Package>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.eventexecutor.rev131112.*,</Export-Package>
72           </instructions>
73         </configuration>
74       </plugin>
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-EVENT-EXECUTOR-CONFIG Module site</name>
86       <url>${basedir}/target/site/${project.artifactId}</url>
87     </site>
88   </distributionManagement>
89
90 </project>