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