forked from auth0/auth0-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
75 lines (64 loc) · 1.77 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
75
group = 'com.auth0'
apply plugin: 'com.auth0.gradle.oss-library.java'
apply plugin: 'jacoco'
logger.lifecycle("Using version ${version} for ${name}")
oss {
name 'auth0'
repository 'auth0-java'
organization 'auth0'
description 'Java client library for the Auth0 platform.'
developers {
auth0 {
displayName = 'Auth0'
email = 'oss@auth0.com'
}
lbalmaceda {
displayName = 'Luciano Balmaceda'
email = 'luciano.balmaceda@auth0.com'
}
}
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
compileJava {
sourceCompatibility '1.7'
targetCompatibility '1.7'
}
buildscript {
repositories {
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.9.0'
}
}
repositories {
jcenter()
mavenCentral()
}
test {
testLogging {
events "skipped", "failed"
exceptionFormat "short"
}
}
dependencies {
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.9'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.10.0.pr3'
implementation 'commons-codec:commons-codec:1.13'
implementation 'com.auth0:java-jwt:3.10.3'
testImplementation 'org.bouncycastle:bcprov-jdk15on:1.65'
testImplementation 'org.mockito:mockito-core:2.28.2'
testImplementation 'com.squareup.okhttp3:mockwebserver:3.14.9'
testImplementation 'org.hamcrest:hamcrest-core:1.3'
testImplementation 'org.hamcrest:hamcrest-library:1.3'
testImplementation 'junit:junit:4.12'
}