forked from vimeo/stag-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (41 loc) · 1.13 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 {
ext {
kotlinVersion = '1.2.71'
jacocoVersion = '0.7.9' // See http://www.eclemma.org/jacoco/
gsonVersion = '2.8.2'
assertJ = '3.9.1'
// android dependencies
targetSdk = 28
minSdk = 14
buildTools = "28.0.3"
}
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'net.ltgt.gradle:gradle-apt-plugin:0.15'
}
}
allprojects {
repositories {
jcenter()
google()
}
apply plugin: "com.jfrog.bintray"
tasks.withType(Javadoc).all { enabled = false }
tasks.withType(JavaCompile) { options.fork = true }
task wrapper(type: Wrapper) {
gradleVersion = '2.2.1'
}
}
subprojects {
group = 'com.vimeo.stag'
version = '2.6.0'
}