forked from auth0/java-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
58 lines (51 loc) · 1.37 KB
/
Copy pathbuild.gradle
File metadata and controls
58 lines (51 loc) · 1.37 KB
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
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}")
oss {
name "java jwt"
repository "java-jwt"
organization "auth0"
description "Java implementation of JSON Web Token (JWT)"
developers {
auth0 {
displayName = "Auth0"
email = "oss@auth0.com"
}
lbalmaceda {
displayName = "Luciano Balmaceda"
email = "luciano.balmaceda@auth0.com"
}
hzalaz {
displayName = "Hernan Zalazar"
email = "hernan@auth0.com"
}
}
}
compileJava {
sourceCompatibility '1.7'
targetCompatibility '1.7'
}
dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.8'
implementation 'commons-codec:commons-codec:1.11'
testImplementation 'org.bouncycastle:bcprov-jdk15on:1.60'
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 {
reports {
xml.enabled = true
html.enabled = true
}
}
test {
testLogging {
events "skipped", "failed", "standardError"
exceptionFormat "short"
}
}