Bump versions to 0.14.6-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.14.6-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-tokenauthrealm</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>org.opendaylight.aaa</groupId>
37             <artifactId>aaa-password-service-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.aaa</groupId>
41             <artifactId>aaa-password-service-impl</artifactId>
42         </dependency>
43
44         <!-- OSGI dependencies -->
45         <dependency>
46             <groupId>org.osgi</groupId>
47             <artifactId>osgi.cmpn</artifactId>
48         </dependency>
49
50         <!-- External dependencies -->
51         <dependency>
52             <groupId>org.apache.commons</groupId>
53             <artifactId>commons-text</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>net.sf.ehcache</groupId>
57             <artifactId>ehcache</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.immutables</groupId>
61             <artifactId>value</artifactId>
62             <classifier>annotations</classifier>
63         </dependency>
64         <dependency>
65             <groupId>com.h2database</groupId>
66             <artifactId>h2</artifactId>
67         </dependency>
68
69         <!-- Test dependencies -->
70         <dependency>
71             <groupId>com.google.truth</groupId>
72             <artifactId>truth</artifactId>
73         </dependency>
74     </dependencies>
75 </project>