Release netconf
[netconf.git] / apps / yanglib-mdsal-writer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Copyright (c) 2023 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</version>
17         <relativePath>../../parent</relativePath>
18     </parent>
19
20     <artifactId>yanglib-mdsal-writer</artifactId>
21     <name>${project.artifactId}</name>
22     <packaging>bundle</packaging>
23     <description>Yang-Library MDSAL Writer</description>
24
25     <dependencies>
26         <dependency>
27             <groupId>org.opendaylight.mdsal</groupId>
28             <artifactId>mdsal-dom-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.mdsal</groupId>
32             <artifactId>mdsal-binding-api</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
36             <artifactId>rfc6991-ietf-inet-types</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
40             <artifactId>rfc8525</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.osgi</groupId>
44             <artifactId>org.osgi.service.component.annotations</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.osgi</groupId>
48             <artifactId>org.osgi.service.metatype.annotations</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.guicedee.services</groupId>
52             <artifactId>javax.inject</artifactId>
53             <optional>true</optional>
54         </dependency>
55         <dependency>
56             <groupId>jakarta.annotation</groupId>
57             <artifactId>jakarta.annotation-api</artifactId>
58             <optional>true</optional>
59         </dependency>
60         <!-- Test dependencies -->
61         <dependency>
62             <groupId>org.opendaylight.yangtools</groupId>
63             <artifactId>yang-test-util</artifactId>
64             <scope>test</scope>
65         </dependency>
66     </dependencies>
67 </project>