-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
48 lines (43 loc) · 1.16 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
buildscript {
ext {
kotlinVersion = "1.2.41"
okHttpVersion = "3.9.1"
spekVersion = "1.1.5"
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:3.1.1"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0"
classpath "digital.wup:android-maven-publish:3.3.0"
classpath "org.apache.httpcomponents:httpclient:4.5.3"
classpath "org.codehaus.groovy:groovy-all:2.4.12"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.16"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.5.4"
}
}
plugins {
id 'de.undercouch.download' version '3.4.2'
id "pl.allegro.tech.build.axion-release" version "1.9.0"
}
scmVersion {
tag {
prefix = "v"
versionSeparator = ""
}
versionCreator "versionWithBranch"
}
allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
version = scmVersion.version
}
task clean(type: Delete) {
delete rootProject.buildDir
}