-
Notifications
You must be signed in to change notification settings - Fork 927
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
164 additions
and
432 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,7 @@ Temporary Items | |
## Plugin-specific files: | ||
|
||
# IntelliJ | ||
bin/ | ||
/out/ | ||
/lib/out/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#Mon Dec 28 10:00:20 PST 2015 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
apply plugin: 'jacoco' | ||
apply plugin: 'java' | ||
apply from: '../scripts/release.gradle' | ||
apply from: '../scripts/maven.gradle' | ||
apply from: '../scripts/bintray.gradle' | ||
plugins { | ||
id "com.jfrog.bintray" version "1.8.4" | ||
id "com.auth0.gradle.oss-library.java" version "0.8.0" | ||
id "jacoco" | ||
} | ||
|
||
logger.lifecycle("Using version ${version} for ${group}.${name}") | ||
|
||
auth0 { | ||
oss { | ||
name "java jwt" | ||
repo "java-jwt" | ||
repository "java-jwt" | ||
organization "auth0" | ||
description "Java implementation of JSON Web Token (JWT)" | ||
url 'http://www.jwt.io' | ||
developer { | ||
id = "auth0" | ||
name = "Auth0" | ||
email = "[email protected]" | ||
} | ||
developer { | ||
id = "lbalmaceda" | ||
name = "Luciano Balmaceda" | ||
email = "[email protected]" | ||
} | ||
developer { | ||
id = "hzalaz" | ||
name = "Hernan Zalazar" | ||
email = "[email protected]" | ||
|
||
developers { | ||
auth0 { | ||
displayName = "Auth0" | ||
email = "[email protected]" | ||
} | ||
lbalmaceda { | ||
displayName = "Luciano Balmaceda" | ||
email = "[email protected]" | ||
} | ||
hzalaz { | ||
displayName = "Hernan Zalazar" | ||
email = "[email protected]" | ||
} | ||
} | ||
} | ||
|
||
|
@@ -34,13 +34,13 @@ compileJava { | |
} | ||
|
||
dependencies { | ||
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.6' | ||
compile 'commons-codec:commons-codec:1.11' | ||
testCompile 'org.bouncycastle:bcprov-jdk15on:1.59' | ||
testCompile 'junit:junit:4.12' | ||
testCompile 'net.jodah:concurrentunit:0.4.3' | ||
testCompile 'org.hamcrest:java-hamcrest:2.0.0.0' | ||
testCompile 'org.mockito:mockito-core:2.18.3' | ||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.8' | ||
implementation 'commons-codec:commons-codec:1.11' | ||
testImplementation 'org.bouncycastle:bcprov-jdk15on:1.59' | ||
testImplementation 'junit:junit:4.12' | ||
testImplementation 'net.jodah:concurrentunit:0.4.3' | ||
testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0' | ||
testImplementation 'org.mockito:mockito-core:2.18.3' | ||
} | ||
|
||
jacocoTestReport { | ||
|
@@ -55,9 +55,4 @@ test { | |
events "skipped", "failed", "standardError" | ||
exceptionFormat "short" | ||
} | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
delete 'CHANGELOG.md.release' | ||
} | ||
} |
Oops, something went wrong.