Merge "Make sure config.yang is MD-SAL enabled"
[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.bgpcep</groupId>
59          <artifactId>mockito-configuration</artifactId>
60          <scope>test</scope>
61       </dependency>
62
63    </dependencies>
64
65    <build>
66       <plugins>
67          <plugin>
68             <groupId>org.opendaylight.yangtools</groupId>
69             <artifactId>yang-maven-plugin</artifactId>
70          </plugin>
71          <plugin>
72             <groupId>org.apache.felix</groupId>
73             <artifactId>maven-bundle-plugin</artifactId>
74             <extensions>true</extensions>
75             <configuration>
76                <instructions>
77                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
78                   <Export-Package>
79                       org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.eventexecutor.rev131112.*,
80                   </Export-Package>
81                </instructions>
82             </configuration>
83          </plugin>
84       </plugins>
85    </build>
86
87    <distributionManagement>
88       <site>
89          <id>${project.artifactId}</id>
90          <name>NETTY-EVENT-EXECUTOR-CONFIG Module site</name>
91          <url>${basedir}/target/site/${project.artifactId}</url>
92       </site>
93    </distributionManagement>
94
95 </project>