-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
105 lines (89 loc) · 3.43 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply from: 'config.gradle'
apply plugin: 'com.github.ben-manes.versions'
buildscript {
ext.versions = [
'minSdk': 24,
'compileSdk': 28,
'androidTools': '26.2.0',
'kotlin': '1.2.71',
'release': '8.8.1',
]
ext.deps = [
android: [
'runtime': 'com.google.android:android:4.1.1.4',
'gradlePlugin': "com.android.tools.build:gradle:3.1.4",
],
'androidx': [
'core': "androidx.core:core:1.0.0",
'viewpager': "androidx.viewpager:viewpager:1.0.0",
'annotations': "androidx.annotation:annotation:1.0.0",
'test': [
'runner': 'androidx.test:runner:1.1.0',
'rules': 'androidx.test:rules:1.1.0',
],
],
'lint': [
'core': "com.android.tools.lint:lint:${versions.androidTools}",
'api': "com.android.tools.lint:lint-api:${versions.androidTools}",
'checks': "com.android.tools.lint:lint-checks:${versions.androidTools}",
'tests': "com.android.tools.lint:lint-tests:${versions.androidTools}",
],
javapoet: 'com.squareup:javapoet:1.10.0',
junit: 'junit:junit:4.12',
truth: 'com.google.truth:truth:0.42',
compiletesting: 'com.google.testing.compile:compile-testing:0.15',
'auto': [
'service': 'com.google.auto.service:auto-service:1.0-rc4',
'common': 'com.google.auto:auto-common:0.10',
],
'guava': 'com.google.guava:guava:24.0-jre',
'release': [
'runtime': "com.jakewharton:butterknife:${versions.release}",
'compiler': "com.jakewharton:butterknife-compiler:${versions.release}"
],
'kotlin': [
'stdLibJdk8': "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${versions.kotlin}",
]
]
repositories {
google()
jcenter(){ url 'http://jcenter.bintray.com/'}
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.4'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
classpath 'com.jakewharton:butterknife-gradle-plugin:10.1.0'
// classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.16'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter(){ url 'http://jcenter.bintray.com/'}
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
if (!project.name.equals('butterknife-gradle-plugin')) {
apply plugin: 'checkstyle'
task checkstyle(type: Checkstyle) {
configFile rootProject.file('checkstyle.xml')
source 'src/main/java'
ignoreFailures false
showViolations true
include '**/*.java'
classpath = files()
}
afterEvaluate {
if (project.tasks.findByName('check')) {
check.dependsOn('checkstyle')
}
}
}