-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
64 lines (57 loc) · 1.48 KB
/
build.gradle
File metadata and controls
64 lines (57 loc) · 1.48 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
59
60
61
62
63
64
apply plugin: 'jacoco'
apply plugin: 'java'
apply from: '../scripts/release.gradle'
apply from: '../scripts/maven.gradle'
apply from: '../scripts/bintray.gradle'
logger.lifecycle("Using version ${version} for ${group}.${name}")
auth0 {
name "java jwt"
repo "java-jwt"
description "Java implementation of JSON Web Token (JWT)"
url 'http://www.jwt.io'
developer {
id = "auth0"
name = "Auth0"
email = "oss@auth0.com"
}
developer {
id = "lbalmaceda"
name = "Luciano Balmaceda"
email = "luciano.balmaceda@auth0.com"
}
developer {
id = "hzalaz"
name = "Hernan Zalazar"
email = "hernan@auth0.com"
}
}
compileJava {
sourceCompatibility '1.7'
targetCompatibility '1.7'
}
dependencies {
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.2'
compile 'commons-codec:commons-codec:1.11'
compile 'com.google.code.gson:gson:2.8.2'
testCompile 'org.bouncycastle:bcprov-jdk15on:1.58'
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.11.0'
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
test {
testLogging {
events "skipped", "failed", "standardError"
exceptionFormat "short"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
delete 'CHANGELOG.md.release'
}