Bump versions to 0.17.5-SNAPSHOT
[aaa.git] / aaa-idm-store-h2 / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2021 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12     <modelVersion>4.0.0</modelVersion>
13
14     <parent>
15         <groupId>org.opendaylight.aaa</groupId>
16         <artifactId>aaa-parent</artifactId>
17         <version>0.17.5-SNAPSHOT</version>
18         <relativePath>../parent</relativePath>
19     </parent>
20
21     <artifactId>aaa-idm-store-h2</artifactId>
22     <name>ODL :: aaa :: ${project.artifactId}</name>
23     <packaging>bundle</packaging>
24
25     <dependencies>
26         <!-- Internal aaa dependencies -->
27         <dependency>
28             <groupId>org.opendaylight.aaa</groupId>
29             <artifactId>aaa-authn-api</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>org.opendaylight.aaa</groupId>
33             <artifactId>aaa-password-service-api</artifactId>
34         </dependency>
35         <!-- OSGI dependencies -->
36         <dependency>
37             <groupId>org.osgi</groupId>
38             <artifactId>org.osgi.service.component.annotations</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.osgi</groupId>
42             <artifactId>org.osgi.service.metatype.annotations</artifactId>
43         </dependency>
44
45         <!-- External dependencies -->
46         <dependency>
47             <groupId>com.google.guava</groupId>
48             <artifactId>guava</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>net.sf.ehcache</groupId>
52             <artifactId>ehcache</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.immutables</groupId>
56             <artifactId>value</artifactId>
57             <classifier>annotations</classifier>
58         </dependency>
59         <dependency>
60             <groupId>com.h2database</groupId>
61             <artifactId>h2</artifactId>
62         </dependency>
63
64         <dependency>
65             <groupId>org.opendaylight.aaa</groupId>
66             <artifactId>aaa-password-service-impl</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.opendaylight.aaa</groupId>
71             <artifactId>aaa-tokenauthrealm</artifactId>
72             <scope>test</scope>
73         </dependency>
74     </dependencies>
75 </project>