Merge "Exception for URI /restconf/operations/module_name:rpc ended with slash"
[controller.git] / opendaylight / config / yang-store-impl / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <artifactId>config-subsystem</artifactId>
5         <groupId>org.opendaylight.controller</groupId>
6         <version>0.2.5-SNAPSHOT</version>
7         <relativePath>..</relativePath>
8     </parent>
9     <artifactId>yang-store-impl</artifactId>
10     <name>${project.artifactId}</name>
11     <packaging>bundle</packaging>
12
13     <dependencies>
14         <dependency>
15             <groupId>${project.groupId}</groupId>
16             <artifactId>yang-store-api</artifactId>
17         </dependency>
18         <dependency>
19             <groupId>org.osgi</groupId>
20             <artifactId>org.osgi.core</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.slf4j</groupId>
24             <artifactId>slf4j-api</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>${project.groupId}</groupId>
28             <artifactId>yang-jmx-generator</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.yangtools</groupId>
32             <artifactId>binding-type-provider</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>commons-io</groupId>
36             <artifactId>commons-io</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>com.google.guava</groupId>
40             <artifactId>guava</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.yangtools</groupId>
44             <artifactId>mockito-configuration</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.google.code.findbugs</groupId>
48             <artifactId>jsr305</artifactId>
49         </dependency>
50     </dependencies>
51
52     <build>
53         <plugins>
54             <plugin>
55                 <groupId>org.apache.felix</groupId>
56                 <artifactId>maven-bundle-plugin</artifactId>
57                 <configuration>
58                     <instructions>
59                         <Bundle-Activator>org.opendaylight.controller.config.yang.store.impl.YangStoreActivator</Bundle-Activator>
60                         <Export-Package>
61                         </Export-Package>
62                     </instructions>
63                 </configuration>
64             </plugin>
65             <!-- test jar -->
66             <plugin>
67                 <groupId>org.apache.maven.plugins</groupId>
68                 <artifactId>maven-jar-plugin</artifactId>
69             </plugin>
70         </plugins>
71     </build>
72
73 </project>