forked from rakutentech/android-remote-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (41 loc) · 1.2 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
buildscript {
apply from: "config/index.gradle"
CONFIG.versions.android.sdk.min = 21
CONFIG.versions.kotlin = '1.3.50'
CONFIG.versions.android.plugin = '3.3.1'
CONFIG.versions.okhttp = '3.12.3'
repositories {
google()
jcenter()
gradle()
}
dependencies {
classpath "com.android.tools.build:gradle:$CONFIG.versions.android.plugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$CONFIG.versions.kotlin"
classpath "org.jetbrains.kotlin:kotlin-serialization:$CONFIG.versions.kotlin"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.18"
classpath 'pl.allegro.tech.build:axion-release-plugin:1.10.2'
classpath 'digital.wup:android-maven-publish:3.6.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}
plugins {
id 'io.gitlab.arturbosch.detekt' version '1.0.1'
}
allprojects { proj ->
repositories {
google()
jcenter()
maven { url "https://kotlin.bintray.com/kotlinx" }
}
apply plugin: 'pl.allegro.tech.build.axion-release'
scmVersion {
useHighestVersion = true
tag {
prefix = 'v'
versionSeparator = ''
versionIncrementer 'incrementMinor'
}
}
proj.version = scmVersion.version
}