forked from j256/two-factor-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
67 lines (67 loc) · 1.95 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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">
<!-- ormlite configuration file for Maven (http://maven.apache.org/) -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.j256.common.utils</groupId>
<artifactId>totp</artifactId>
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>TOTP Java</name>
<url>https://github.com/j256/java-two-factor-auth</url>
<description>Time Based Two Factor Auth</description>
<licenses>
<license>
<name>ISC License</name>
</license>
</licenses>
<scm>
<url>https://github.com/j256/java-two-factor-auth</url>
<connection>scm:git:ssh://git@github.com/j256/java-two-factor-auth.git</connection>
<developerConnection>scm:git:ssh://git@github.com/j256/java-two-factor-auth.git</developerConnection>
</scm>
<developers>
<developer>
<id>gray</id>
<name>Gray Watson</name>
<url>http://256.com/gray/</url>
<organization>256.com</organization>
<organizationUrl>http://256.com/</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>-5</timezone>
</developer>
</developers>
<properties>
<junit-version>4.8.1</junit-version>
</properties>
<build>
<finalName>totp</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>