Bump versions to 7.0.1-SNAPSHOT
[netconf.git] / keystore / keystore-legacy / 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 <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>7.0.1-SNAPSHOT</version>
16         <relativePath>../../parent</relativePath>
17     </parent>
18
19     <artifactId>keystore-legacy</artifactId>
20     <packaging>bundle</packaging>
21     <name>${project.artifactId}</name>
22     <description>Legacy NETCONF keystore</description>
23
24     <dependencies>
25         <dependency>
26             <groupId>com.guicedee.services</groupId>
27             <artifactId>javax.inject</artifactId>
28             <optional>true</optional>
29         </dependency>
30         <dependency>
31             <groupId>jakarta.annotation</groupId>
32             <artifactId>jakarta.annotation-api</artifactId>
33             <scope>provided</scope>
34             <optional>true</optional>
35         </dependency>
36         <dependency>
37             <groupId>org.bouncycastle</groupId>
38             <artifactId>bcpkix-jdk18on</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.bouncycastle</groupId>
42             <artifactId>bcprov-jdk18on</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.opendaylight.aaa</groupId>
46             <artifactId>aaa-encrypt-service</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.opendaylight.mdsal</groupId>
50             <artifactId>mdsal-binding-api</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.mdsal</groupId>
54             <artifactId>mdsal-common-api</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.mdsal</groupId>
58             <artifactId>mdsal-singleton-api</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.opendaylight.yangtools</groupId>
62             <artifactId>concepts</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.osgi</groupId>
66             <artifactId>org.osgi.service.component.annotations</artifactId>
67         </dependency>
68
69         <dependency>
70             <groupId>org.opendaylight.netconf</groupId>
71             <artifactId>netconf-api</artifactId>
72             <scope>test</scope>
73         </dependency>
74     </dependencies>
75
76     <build>
77         <plugins>
78             <plugin>
79                 <groupId>org.apache.felix</groupId>
80                 <artifactId>maven-bundle-plugin</artifactId>
81                 <configuration>
82                     <instructions>
83                         <Automatic-Module-Name>org.opendaylight.netconf.keystore.legacy</Automatic-Module-Name>
84                     </instructions>
85                 </configuration>
86             </plugin>
87         </plugins>
88     </build>
89 </project>