tiklab-security-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-security-server</artifactId>
<version>1.0.0.3</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/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>tiklab-security</artifactId>
<groupId>io.tiklab</groupId>
<version>1.0.0.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>tiklab-security-server</artifactId>
<dependencies>
<!--spring-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<scope>compile</scope>
</dependency>
<!--common-->
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-dal-jpa</artifactId>
<version>${tiklab-dal.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-toolkit-core</artifactId>
<version>${tiklab-toolkit.version}</version>
</dependency>
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-rpc-client</artifactId>
<version>${tiklab-rpc.version}</version>
</dependency>
<dependency>
<groupId>io.tiklab</groupId>
<artifactId>tiklab-security-api</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>
<!--other-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>