Skip to content

Commit

Permalink
Merge pull request #80 from tokensmith/release-1.3.4
Browse files Browse the repository at this point in the history
Release 1.3.4
  • Loading branch information
tmackenzie authored Aug 1, 2020
2 parents 4cdd25d + aa8eca6 commit 43deacc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {
}

group = 'net.tokensmith'
version = '1.3.3'
version = '1.3.4-SNAPSHOT'
description = 'Java implementation of JWT'

sourceCompatibility = 12
Expand All @@ -21,7 +21,7 @@ targetCompatibility = 12
ext {
jacksonVersion = '2.11.0'
log4jVersion = '2.13.3'
slf4jVersion = '1.7.30'
slf4jVersion = '1.7.25'
mockitoVersion = '2.28.2'
}

Expand All @@ -30,14 +30,15 @@ dependencies {
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${jacksonVersion}"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jacksonVersion}"
compile "org.slf4j:slf4j-simple:${slf4jVersion}"
compile "org.apache.logging.log4j:log4j-1.2-api:${log4jVersion}"
compile "org.apache.logging.log4j:log4j-api:${log4jVersion}"
compile "org.apache.logging.log4j:log4j-core:${log4jVersion}"

compile group: 'org.slf4j', name: 'slf4j-api', version: "${slf4jVersion}"

testImplementation group: 'junit', name: 'junit', version:'4.12'
testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version:'1.3'
testCompile "org.mockito:mockito-core:${mockitoVersion}"
testCompile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: "${log4jVersion}"
testCompile group: 'org.apache.logging.log4j', name: 'log4j-api', version: "${log4jVersion}"
testCompile group: 'org.apache.logging.log4j', name: 'log4j-core', version: "${log4jVersion}"
}


Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip

0 comments on commit 43deacc

Please sign in to comment.