Bump odlparent to 6.0.0
[netconf.git] / netconf / netconf-api / 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.8.0-SNAPSHOT</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-api</artifactId>
21   <version>1.8.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <properties>
26       <!-- FIXME: Workaround for https://issues.apache.org/jira/browse/ARIES-1923 -->
27       <maven.compiler.release>10</maven.compiler.release>
28   </properties>
29
30   <dependencies>
31     <dependency>
32       <groupId>io.netty</groupId>
33       <artifactId>netty-transport</artifactId>
34     </dependency>
35
36     <dependency>
37       <groupId>${project.groupId}</groupId>
38       <artifactId>ietf-netconf-monitoring</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>${project.groupId}</groupId>
42       <artifactId>ietf-netconf-monitoring-extension</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
46       <artifactId>rfc6991</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.yangtools</groupId>
50       <artifactId>yang-model-api</artifactId>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.yangtools</groupId>
54       <artifactId>mockito-configuration</artifactId>
55     </dependency>
56     <dependency>
57       <groupId>org.xmlunit</groupId>
58       <artifactId>xmlunit-legacy</artifactId>
59       <scope>test</scope>
60     </dependency>
61   </dependencies>
62 </project>