Bumped controller version by minor for next release cycle.
[controller.git] / opendaylight / netconf / 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>netconf-monitoring</artifactId>
10   <packaging>bundle</packaging>
11   <name>${project.artifactId}</name>
12
13   <dependencies>
14     <!-- compile dependencies -->
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>netconf-api</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>netconf-mapping-api</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>netconf-util</artifactId>
26     </dependency>
27
28     <dependency>
29       <groupId>com.google.guava</groupId>
30       <artifactId>guava</artifactId>
31     </dependency>
32
33     <dependency>
34       <groupId>org.opendaylight.yangtools</groupId>
35       <artifactId>mockito-configuration</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.yangtools.model</groupId>
39       <artifactId>ietf-inet-types</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.slf4j</groupId>
43       <artifactId>slf4j-api</artifactId>
44     </dependency>
45   </dependencies>
46
47   <build>
48     <plugins>
49       <plugin>
50         <groupId>org.apache.felix</groupId>
51         <artifactId>maven-bundle-plugin</artifactId>
52         <configuration>
53           <instructions>
54             <Bundle-Activator>org.opendaylight.controller.netconf.monitoring.osgi.NetconfMonitoringActivator</Bundle-Activator>
55           </instructions>
56         </configuration>
57       </plugin>
58     </plugins>
59   </build>
60
61 </project>