Bumped controller version by minor for next release cycle.
[controller.git] / opendaylight / netconf / ietf-netconf-monitoring / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>netconf-subsystem</artifactId>
7     <version>0.4.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>ietf-netconf-monitoring</artifactId>
10   <packaging>bundle</packaging>
11   <name>${project.artifactId}</name>
12
13   <dependencies>
14
15     <dependency>
16       <groupId>com.google.guava</groupId>
17       <artifactId>guava</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.yangtools.model</groupId>
21       <artifactId>ietf-inet-types</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.yangtools.model</groupId>
25       <artifactId>ietf-yang-types</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.slf4j</groupId>
29       <artifactId>slf4j-api</artifactId>
30     </dependency>
31   </dependencies>
32
33   <build>
34     <plugins>
35
36       <plugin>
37         <groupId>org.apache.felix</groupId>
38         <artifactId>maven-bundle-plugin</artifactId>
39         <configuration>
40           <instructions>
41             <Export-Package>org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.rev101004.*</Export-Package>
42           </instructions>
43         </configuration>
44       </plugin>
45       <plugin>
46         <groupId>org.opendaylight.yangtools</groupId>
47         <artifactId>yang-maven-plugin</artifactId>
48       </plugin>
49     </plugins>
50   </build>
51
52 </project>