Release netconf
[netconf.git] / keystore / plaintext-cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Copyright (c) 2024 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
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14
15     <parent>
16         <groupId>org.opendaylight.netconf</groupId>
17         <artifactId>netconf-parent</artifactId>
18         <version>7.0.4</version>
19         <relativePath>../../parent</relativePath>
20     </parent>
21
22     <artifactId>keystore-plaintext-cli</artifactId>
23     <name>${project.artifactId}</name>
24     <packaging>bundle</packaging>
25     <description>Netconf Plaintext Keystore CLI for Karaf Shell</description>
26
27     <dependencies>
28         <dependency>
29             <groupId>org.opendaylight.netconf</groupId>
30             <artifactId>keystore-plaintext-api</artifactId>
31         </dependency>
32         <dependency>
33             <groupId>org.apache.karaf.shell</groupId>
34             <artifactId>org.apache.karaf.shell.core</artifactId>
35             <scope>provided</scope>
36         </dependency>
37     </dependencies>
38
39     <build>
40         <plugins>
41             <plugin>
42                 <groupId>org.apache.karaf.tooling</groupId>
43                 <artifactId>karaf-services-maven-plugin</artifactId>
44             </plugin>
45         </plugins>
46     </build>
47 </project>