authkit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>tv.hd3g.commons</groupId>
<artifactId>authkit</artifactId>
<version>0.0.1</version>
</dependency><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>
<artifactId>authkit</artifactId>
<packaging>jar</packaging>
<version>0.0.1</version>
<name>AuthKit</name>
<url>https://github.com/hdsdi3g/authkit</url>
<description>Authentification and RBAC module for Spring Boot</description>
<parent>
<groupId>tv.hd3g.commons</groupId>
<artifactId>parent-persistence</artifactId>
<version>2.1.7.RELEASE-7</version>
<relativePath />
</parent>
<dependencies>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.10.7</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.10.7</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.10.7</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>de.mkammerer</groupId>
<artifactId>argon2-jvm</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-ldap</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.unboundid</groupId>
<artifactId>unboundid-ldapsdk</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>tv.hd3g.commons</groupId>
<artifactId>selfautorestdoc</artifactId>
<version>0.0.1</version>
</dependency>
</dependencies>
<organization>
<name>hd3g.tv</name>
<url>https://hd3g.tv</url>
</organization>
<developers>
<developer>
<name>hdsdi3g</name>
<email>admin@hd3g.tv</email>
<organization>hd3g.tv</organization>
<organizationUrl>https://hd3g.tv</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/hdsdi3g/authkit.git</connection>
<developerConnection>scm:git:https://github.com/hdsdi3g/authkit.git</developerConnection>
<url>https://github.com/hdsdi3g</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<url>https://github.com/hdsdi3g/authkit/issues</url>
<system>GitHub</system>
</issueManagement>
<licenses>
<license>
<name>GNU Lesser General Public License, Version 3</name>
<url>https://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.0.0</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>add-third-party</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}</outputDirectory>
<useMissingFile>true</useMissingFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>tv.hd3g.mvnplugin</groupId>
<artifactId>setupdb</artifactId>
<version>0.0.2</version>
</plugin>
</plugins>
</build>
</project>