forked from auth0/jwks-rsa-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
74 lines (63 loc) · 1.74 KB
/
build.gradle
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
65
66
67
68
69
70
71
72
73
74
group = 'com.auth0'
apply plugin: 'com.auth0.gradle.oss-library.java'
apply plugin: 'jacoco'
logger.lifecycle("Using version ${version} for ${name}")
oss {
name 'jwks-rsa'
repository 'jwks-rsa-java'
organization 'auth0'
description 'JSON Web Key Set parser library'
developers {
auth0 {
displayName = 'Auth0'
email = '[email protected]'
}
lbalmaceda {
displayName = 'Luciano Balmaceda'
email = '[email protected]'
}
hzalaz {
displayName = 'Hernan Zalazar'
email = '[email protected]'
}
}
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
compileJava {
sourceCompatibility '1.7'
targetCompatibility '1.7'
}
buildscript {
repositories {
jcenter()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'gradle.plugin.com.auth0.gradle:oss-library:0.11.0'
}
}
repositories {
mavenCentral()
}
test {
testLogging {
events "skipped", "failed"
exceptionFormat "short"
}
}
dependencies {
implementation group: 'commons-codec', name: 'commons-codec', version:'1.13'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.10.0.pr3'
implementation group: 'com.google.guava', name: 'guava', version:'27.1-jre'
testImplementation group: 'junit', name: 'junit', version:'4.12'
testImplementation group: 'org.mockito', name: 'mockito-core', version:'1.10.19'
testImplementation group: 'org.hamcrest', name: 'hamcrest-library', version:'1.3'
}