forked from stoyicker/android-check-2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (43 loc) · 1.38 KB
/
build.gradle
File metadata and controls
47 lines (43 loc) · 1.38 KB
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.kotlin_version = '1.2.50'
repositories {
mavenLocal()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.novoda:bintray-release:0.8.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'pt.simdea.verifier:verifier:4.0.0-alpha1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.50"
classpath 'com.gradle.publish:plugin-publish-plugin:0.9.10'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
classpath 'com.vanniktech:gradle-code-quality-tools-plugin:0.10.0'
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.11.0'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.2.0'
//classpath files("$project.rootDir/plugin/build/libs/plugin.jar")
}
}
allprojects {
repositories {
mavenLocal()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
google()
}
}
task wrapper(type: Wrapper) {
group 'Build Setup'
description 'Initializes the Gradle Wrapper.'
gradleVersion = '4.4'
}
task clean(type: Delete) {
delete rootProject.allprojects.collect {project -> project.buildDir}
followSymlinks false
}