aaa-idm-store-h2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.opendaylight.aaa</groupId> <artifactId>aaa-idm-store-h2</artifactId> <version>0.20.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2021 PANTHEON.tech, s.r.o. and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html --> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.opendaylight.aaa</groupId> <artifactId>aaa-parent</artifactId> <version>0.20.8</version> <relativePath>../parent</relativePath> </parent> <artifactId>aaa-idm-store-h2</artifactId> <name>ODL :: aaa :: ${project.artifactId}</name> <packaging>bundle</packaging> <dependencies> <!-- Internal aaa dependencies --> <dependency> <groupId>org.opendaylight.aaa</groupId> <artifactId>aaa-authn-api</artifactId> </dependency> <dependency> <groupId>org.opendaylight.aaa</groupId> <artifactId>aaa-password-service-api</artifactId> </dependency> <!-- OSGI dependencies --> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.metatype.annotations</artifactId> </dependency> <!-- External dependencies --> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>org.immutables</groupId> <artifactId>value</artifactId> <classifier>annotations</classifier> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> </dependency> <dependency> <groupId>org.opendaylight.aaa</groupId> <artifactId>aaa-password-service-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.opendaylight.aaa</groupId> <artifactId>aaa-tokenauthrealm</artifactId> <scope>test</scope> </dependency> </dependencies> </project>