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