Merge "Adding another constructor to ContainerFlowConfig to take dlVlan. Being an...
[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>netty-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
32       <!--test dependencies -->
33       <dependency>
34          <groupId>junit</groupId>
35          <artifactId>junit</artifactId>
36          <scope>test</scope>
37       </dependency>
38       <dependency>
39          <groupId>org.opendaylight.controller</groupId>
40          <artifactId>config-manager</artifactId>
41          <scope>test</scope>
42          <type>test-jar</type>
43       </dependency>
44       <dependency>
45          <groupId>org.opendaylight.controller</groupId>
46          <artifactId>config-manager</artifactId>
47          <scope>test</scope>
48       </dependency>
49       <dependency>
50          <groupId>org.opendaylight.controller</groupId>
51          <artifactId>config-util</artifactId>
52          <scope>test</scope>
53       </dependency>
54       <dependency>
55          <groupId>org.opendaylight.bgpcep</groupId>
56          <artifactId>mockito-configuration</artifactId>
57          <scope>test</scope>
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                   </Export-Package>
77                   <Import-Package>
78                      com.google.common.base,
79                      org.opendaylight.controller.config.yang.netty,
80                      io.netty.util.concurrent,
81                      org.opendaylight.controller.config.api,
82                      org.opendaylight.controller.config.api.annotations,
83                      org.opendaylight.controller.config.api.runtime,
84                      org.opendaylight.controller.config.spi,
85                      org.slf4j,
86                      org.osgi.framework
87                   </Import-Package>
88                </instructions>
89             </configuration>
90          </plugin>
91       </plugins>
92    </build>
93
94    <distributionManagement>
95       <site>
96          <id>${project.artifactId}</id>
97          <name>NETTY-EVENT-EXECUTOR-CONFIG Module site</name>
98          <url>${basedir}/target/site/${project.artifactId}</url>
99       </site>
100    </distributionManagement>
101
102 </project>