53cd388dac06de7b1a47eb8c2f8c737b169509bb
[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.15.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-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>org.osgi.service.component.annotations</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.osgi</groupId>
51             <artifactId>org.osgi.service.metatype.annotations</artifactId>
52         </dependency>
53
54         <!-- External dependencies -->
55         <dependency>
56             <groupId>org.apache.commons</groupId>
57             <artifactId>commons-text</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>net.sf.ehcache</groupId>
61             <artifactId>ehcache</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.immutables</groupId>
65             <artifactId>value</artifactId>
66             <classifier>annotations</classifier>
67         </dependency>
68         <dependency>
69             <groupId>com.h2database</groupId>
70             <artifactId>h2</artifactId>
71         </dependency>
72
73         <!-- Test dependencies -->
74         <dependency>
75             <groupId>com.google.truth</groupId>
76             <artifactId>truth</artifactId>
77         </dependency>
78     </dependencies>
79 </project>