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