shiro-database-realm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.atteo.moonshine</groupId> <artifactId>shiro-database-realm</artifactId> <version>1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>services</artifactId> <groupId>org.atteo.moonshine</groupId> <version>1.2</version> </parent> <artifactId>shiro-database-realm</artifactId> <name>Shiro Database Realm</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>shiro</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>spring-data</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>liquibase</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>hibernate</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>atomikos</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>container-test-utils</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>shiro-test-utils</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>