commons-auth-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.rocketbase.commons</groupId>
<artifactId>commons-auth-server</artifactId>
<version>4.4.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>commons-auth</artifactId>
<groupId>io.rocketbase.commons</groupId>
<version>4.4.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>commons-auth-server</artifactId>
<dependencies>
<dependency>
<groupId>io.rocketbase.commons</groupId>
<artifactId>commons-auth-adapter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.rocketbase.commons</groupId>
<artifactId>commons-auth-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.rocketbase.commons</groupId>
<artifactId>commons-rest-server</artifactId>
<version>${commons-rest.version}</version>
</dependency>
<dependency>
<groupId>io.rocketbase.commons</groupId>
<artifactId>commons-rest-errorpage</artifactId>
<version>${commons-rest.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.passay</groupId>
<artifactId>passay</artifactId>
<version>${passay.version}</version>
</dependency>
<!-- security -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<exclusions>
<exclusion>
<groupId>aopalliance</groupId>
<artifactId>aopalliance</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<exclusions>
<exclusion>
<groupId>aopalliance</groupId>
<artifactId>aopalliance</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- tests -->
<dependency>
<groupId>io.rocketbase.commons</groupId>
<artifactId>commons-auth-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>