Added config service interface for netty EventExecutor, module implementation of...
[controller.git] / opendaylight / config / netty-event-executor-config / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3    <parent>
4       <groupId>org.opendaylight.controller</groupId>
5       <artifactId>config-subsystem</artifactId>
6       <version>0.2.3-SNAPSHOT</version>
7    </parent>
8    <modelVersion>4.0.0</modelVersion>
9    <artifactId>netty-event-executor-config</artifactId>
10    <description>Configuration Wrapper around netty's event executor</description>
11    <packaging>bundle</packaging>
12    <name>${project.artifactId}</name>
13    <prerequisites>
14       <maven>3.0.4</maven>
15    </prerequisites>
16
17    <dependencies>
18       <dependency>
19          <groupId>org.opendaylight.controller</groupId>
20          <artifactId>config-api</artifactId>
21       </dependency>
22       <dependency>
23          <groupId>org.opendaylight.controller</groupId>
24          <artifactId>threadpool-config-api</artifactId>
25          <version>${project.version}</version>
26       </dependency>
27       <dependency>
28          <groupId>org.slf4j</groupId>
29          <artifactId>slf4j-api</artifactId>
30       </dependency>
31       <dependency>
32          <groupId>com.google.guava</groupId>
33          <artifactId>guava</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          <scope>test</scope>
46          <type>test-jar</type>
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       <dependency>
59          <groupId>org.opendaylight.bgpcep</groupId>
60          <artifactId>mockito-configuration</artifactId>
61          <scope>test</scope>
62       </dependency>
63
64    </dependencies>
65
66    <build>
67       <plugins>
68          <plugin>
69             <groupId>org.opendaylight.yangtools</groupId>
70             <artifactId>yang-maven-plugin</artifactId>
71          </plugin>
72          <plugin>
73             <groupId>org.apache.felix</groupId>
74             <artifactId>maven-bundle-plugin</artifactId>
75             <extensions>true</extensions>
76             <configuration>
77                <instructions>
78                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
79                   <Export-Package>
80                   </Export-Package>
81                   <Import-Package>
82                      com.google.common.base,
83                      org.opendaylight.controller.config.yang.threadpool,
84                      io.netty.util.concurrent,
85                      org.opendaylight.controller.config.api,
86                      org.opendaylight.controller.config.api.annotations,
87                      org.opendaylight.controller.config.api.runtime,
88                      org.opendaylight.controller.config.spi,
89                      org.slf4j,
90                      org.osgi.framework
91                   </Import-Package>
92                </instructions>
93             </configuration>
94          </plugin>
95       </plugins>
96    </build>
97
98    <distributionManagement>
99       <site>
100          <id>${project.artifactId}</id>
101          <name>NETTY-EVENT-EXECUTOR-CONFIG Module site</name>
102          <url>${basedir}/target/site/${project.artifactId}</url>
103       </site>
104    </distributionManagement>
105
106 </project>