Merge "Migrate NetconfHelloMessage's use of Optional"
[netconf.git] / netconf / netconf-monitoring / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-parent</artifactId>
15     <version>1.6.0-SNAPSHOT</version>
16     <relativePath>../netconf-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-monitoring</artifactId>
21   <version>1.6.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <!-- compile dependencies -->
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>netconf-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>netconf-mapping-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>netconf-util</artifactId>
38     </dependency>
39
40     <dependency>
41       <groupId>com.google.guava</groupId>
42       <artifactId>guava</artifactId>
43     </dependency>
44
45     <dependency>
46       <groupId>org.opendaylight.yangtools</groupId>
47       <artifactId>mockito-configuration</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
51       <artifactId>rfc6991-ietf-inet-types</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.slf4j</groupId>
55       <artifactId>slf4j-api</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.osgi</groupId>
59       <artifactId>org.osgi.core</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>com.sun.xml.bind</groupId>
63       <artifactId>jaxb-core</artifactId>
64       <!-- FIXME: remove version once odlparent declares it -->
65       <version>2.2.11</version>
66     </dependency>
67     <dependency>
68       <groupId>com.sun.xml.bind</groupId>
69       <artifactId>jaxb-impl</artifactId>
70       <!-- FIXME: remove version once odlparent declares it -->
71       <version>2.2.11</version>
72     </dependency>
73     <dependency>
74       <groupId>javax.activation</groupId>
75       <artifactId>activation</artifactId>
76     </dependency>
77   </dependencies>
78
79   <build>
80     <plugins>
81       <plugin>
82         <groupId>org.apache.felix</groupId>
83         <artifactId>maven-bundle-plugin</artifactId>
84         <configuration>
85           <instructions>
86             <Bundle-Activator>org.opendaylight.netconf.monitoring.osgi.NetconfMonitoringActivator</Bundle-Activator>
87           </instructions>
88         </configuration>
89       </plugin>
90     </plugins>
91   </build>
92
93 </project>