cc6c9083a60cf29e5b48f2e6cfd26f73ff8ea601
[netconf.git] / plugins / netconf-dom-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2020 PANTHEON.tech, s.r.o. 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"
10          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11     <modelVersion>4.0.0</modelVersion>
12
13     <parent>
14         <groupId>org.opendaylight.netconf</groupId>
15         <artifactId>netconf-parent</artifactId>
16         <version>7.0.0-SNAPSHOT</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>netconf-dom-api</artifactId>
21     <name>${project.artifactId}</name>
22     <packaging>bundle</packaging>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.github.spotbugs</groupId>
27             <artifactId>spotbugs-annotations</artifactId>
28             <optional>true</optional>
29         </dependency>
30         <dependency>
31             <groupId>com.google.guava</groupId>
32             <artifactId>guava</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.eclipse.jdt</groupId>
36             <artifactId>org.eclipse.jdt.annotation</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>yang-data-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.opendaylight.mdsal</groupId>
44             <artifactId>mdsal-common-api</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.mdsal</groupId>
48             <artifactId>mdsal-dom-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.opendaylight.netconf</groupId>
52             <artifactId>netconf-api</artifactId>
53         </dependency>
54     </dependencies>
55 </project>