totp-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.samstevens.totp</groupId> <artifactId>totp-spring-boot-starter</artifactId> <version>1.7.1</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>dev.samstevens.totp</groupId> <artifactId>totp-parent</artifactId> <version>1.7.1</version> </parent> <name>${project.groupId}:${project.artifactId}</name> <artifactId>totp-spring-boot-starter</artifactId> <description>A Spring Boot starter to autoconfigure the Java-TOTP library.</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>totp</artifactId> <version>1.7.1</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>2.2.5.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>2.2.5.RELEASE</version> <optional>true</optional> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>2.2.5.RELEASE</version> </annotationProcessorPath> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> </project>