-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathbuild.gradle
52 lines (44 loc) · 1.26 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
plugins {
id "com.auth0.gradle.oss-library.android" version "0.17.1"
}
logger.lifecycle("Using version ${version} for ${name}")
oss {
name 'jwtdecode'
repository 'jwtdecode.android'
organization 'auth0'
description 'JWT Decoding library for Android'
developers {
auth0 {
displayName = 'Auth0'
email = '[email protected]'
}
lbalmaceda {
displayName = 'Luciano Balmaceda'
email = '[email protected]'
}
}
}
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 15
targetSdkVersion 29
versionCode 1
versionName "1.0"
}
}
dependencies {
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'com.google.code.gson:gson:2.8.9'
testImplementation 'junit:junit:4.13'
testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0'
testImplementation('org.robolectric:robolectric:4.3.1') {
// https://github.com/robolectric/robolectric/issues/5245
exclude group: 'com.google.auto.service', module: 'auto-service'
}
testImplementation 'org.mockito:mockito-core:3.2.4'
}
tasks.withType(Test) {
jacoco.includeNoLocationClasses = true
jacoco.excludes = ['jdk.internal.*']
}