Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierJaquemet committed Dec 20, 2019
2 parents 01f38d9 + 8488099 commit bd54d25
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To add this library to your java project using Maven, add the following dependen
<dependency>
<groupId>dev.samstevens.totp</groupId>
<artifactId>totp</artifactId>
<version>1.5.1</version>
<version>1.6</version>
</dependency>
```

Expand All @@ -34,7 +34,7 @@ To add the dependency using Gradle, add the following to the build script:

```
dependencies {
compile 'dev.samstevens.totp:totp:1.5.1'
compile 'dev.samstevens.totp:totp:1.6'
}
```

Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>dev.samstevens.totp</groupId>
<artifactId>totp</artifactId>
<version>1.5.1</version>
<version>1.6</version>

<name>${project.groupId}:${project.artifactId}</name>
<description>A library to help implement time-based one time passwords to enable MFA.</description>
Expand All @@ -21,7 +21,7 @@

<scm>
<developerConnection>scm:git:[email protected]:samdjstevens/java-totp.git</developerConnection>
<tag>totp-1.5.1</tag>
<tag>totp-1.6</tag>
<url>https://github.com/samdjstevens/java-totp</url>
</scm>

Expand All @@ -35,8 +35,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>
Expand Down Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.3.0</version>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
Expand Down

0 comments on commit bd54d25

Please sign in to comment.