Merge "Fixed publishDataChangeEvent in 2phase commit"
[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          <version>${project.version}</version>
28       </dependency>
29       <dependency>
30          <groupId>org.slf4j</groupId>
31          <artifactId>slf4j-api</artifactId>
32       </dependency>
33
34       <!--test dependencies -->
35       <dependency>
36          <groupId>junit</groupId>
37          <artifactId>junit</artifactId>
38          <scope>test</scope>
39       </dependency>
40       <dependency>
41          <groupId>org.opendaylight.controller</groupId>
42          <artifactId>config-manager</artifactId>
43          <scope>test</scope>
44          <type>test-jar</type>
45       </dependency>
46       <dependency>
47          <groupId>org.opendaylight.controller</groupId>
48          <artifactId>config-manager</artifactId>
49          <scope>test</scope>
50       </dependency>
51       <dependency>
52          <groupId>org.opendaylight.controller</groupId>
53          <artifactId>config-util</artifactId>
54          <scope>test</scope>
55       </dependency>
56       <dependency>
57          <groupId>org.opendaylight.yangtools</groupId>
58          <artifactId>mockito-configuration</artifactId>
59       </dependency>
60
61    </dependencies>
62
63    <build>
64       <plugins>
65          <plugin>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>yang-maven-plugin</artifactId>
68          </plugin>
69          <plugin>
70             <groupId>org.apache.felix</groupId>
71             <artifactId>maven-bundle-plugin</artifactId>
72             <extensions>true</extensions>
73             <configuration>
74                <instructions>
75                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
76                   <Export-Package>
77                       org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.eventexecutor.rev131112.*,
78                   </Export-Package>
79                </instructions>
80             </configuration>
81          </plugin>
82       </plugins>
83    </build>
84
85    <distributionManagement>
86       <site>
87          <id>${project.artifactId}</id>
88          <name>NETTY-EVENT-EXECUTOR-CONFIG Module site</name>
89          <url>${basedir}/target/site/${project.artifactId}</url>
90       </site>
91    </distributionManagement>
92
93 </project>