-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (45 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlinVersion = '1.3.30'
fuelGsonVersion = '2.0.1'
fuelAndroidVersion = '2.0.1'
junitVersion = '4.12'
mockWebserverVersion = '3.10.0'
jsonAssertVersion = '1.5.0'
bboxapiCompileSdkVersion = 28
robolectricVersion = '3.4.2'
gsonVersion = '2.8.5'
roboelectricVersion = '3.8'
mockitoKotlinVersion = '1.5.0'
dokkaVersion = '0.9.16'
projectVersion = '1.2.7'
projectDescription = 'Bbox Miami API library for Kotlin/Java/Android'
projectSite = 'https://github.com/bertrandmartel/bboxapi-stb'
projectRepo = 'https://github.com/bertrandmartel/bboxapi-stb.git'
projectLicense = 'The MIT License'
projectLicensePath = 'https://github.com/bertrandmartel/bboxapi-stb/blob/master/LICENSE.md'
projectIssueTracker = 'https://github.com/bertrandmartel/bboxapi-stb/issues'
projectLicenses = ['MIT']
projectLabels = ['bboxapi', 'bbox']
}
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:$dokkaVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}