Make sure config.yang is MD-SAL enabled
[controller.git] / opendaylight / config / netty-timer-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-timer-config</artifactId>
13    <description>Configuration Wrapper around netty's timer</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.opendaylight.controller</groupId>
32          <artifactId>threadpool-config-api</artifactId>
33          <version>${project.version}</version>
34       </dependency>
35       <dependency>
36          <groupId>org.slf4j</groupId>
37          <artifactId>slf4j-api</artifactId>
38       </dependency>
39
40       <!--test dependencies -->
41       <dependency>
42          <groupId>junit</groupId>
43          <artifactId>junit</artifactId>
44          <scope>test</scope>
45       </dependency>
46       <dependency>
47          <groupId>org.opendaylight.controller</groupId>
48          <artifactId>config-manager</artifactId>
49          <scope>test</scope>
50          <type>test-jar</type>
51       </dependency>
52       <dependency>
53          <groupId>org.opendaylight.controller</groupId>
54          <artifactId>config-manager</artifactId>
55          <scope>test</scope>
56       </dependency>
57       <dependency>
58          <groupId>org.opendaylight.controller</groupId>
59          <artifactId>config-util</artifactId>
60          <scope>test</scope>
61       </dependency>
62       <dependency>
63          <groupId>org.opendaylight.bgpcep</groupId>
64          <artifactId>mockito-configuration</artifactId>
65          <scope>test</scope>
66       </dependency>
67       <dependency>
68          <groupId>org.opendaylight.controller</groupId>
69          <artifactId>threadpool-config-impl</artifactId>
70          <version>${project.version}</version>
71          <scope>test</scope>
72       </dependency>
73
74    </dependencies>
75
76    <build>
77       <plugins>
78          <plugin>
79             <groupId>org.opendaylight.yangtools</groupId>
80             <artifactId>yang-maven-plugin</artifactId>
81          </plugin>
82          <plugin>
83             <groupId>org.apache.felix</groupId>
84             <artifactId>maven-bundle-plugin</artifactId>
85             <extensions>true</extensions>
86             <configuration>
87                <instructions>
88                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
89                   <Export-Package>
90                       org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.timer.rev131119.*,
91                   </Export-Package>
92                </instructions>
93             </configuration>
94          </plugin>
95       </plugins>
96    </build>
97
98    <distributionManagement>
99       <site>
100          <id>${project.artifactId}</id>
101          <name>NETTY-TIMER-CONFIG Module site</name>
102          <url>${basedir}/target/site/${project.artifactId}</url>
103       </site>
104    </distributionManagement>
105 </project>