This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
forked from JakeWharton/butterknife
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
122 lines (107 loc) · 3.47 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
apply plugin: 'com.github.ben-manes.versions'
buildscript {
ext.versions = [
'minSdk': 14,
'compileSdk': 28,
'androidTools': '26.2.0',
'kotlin': '1.2.71',
'incap' : '0.2',
'release': '8.8.1',
]
ext.deps = [
android: [
'runtime': 'com.google.android:android:4.1.1.4',
'gradlePlugin': "com.android.tools.build:gradle:3.3.0",
],
'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}",
],
'incap': [
'runtime': "net.ltgt.gradle.incap:incap:${versions.incap}",
'processor': "net.ltgt.gradle.incap:incap-processor:${versions.incap}",
]
]
repositories {
mavenCentral()
google()
jcenter()
gradlePluginPortal()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.16'
}
}
subprojects { project ->
group = GROUP
version = VERSION_NAME
repositories {
mavenCentral()
google()
jcenter()
}
apply plugin: 'net.ltgt.errorprone'
dependencies {
errorprone 'com.google.errorprone:error_prone_core:2.3.1'
}
// TODO figure out why this causes codegen to fail in android tests.
//def nullaway = dependencies.create('com.uber.nullaway:nullaway:0.5.5')
//configurations.all { Configuration configuration ->
// if (configuration.name.endsWith('nnotationProcessor')) {
// configuration.dependencies.add(nullaway)
// }
//}
//
//tasks.withType(JavaCompile) {
// options.compilerArgs += [
// '-Xep:NullAway:ERROR',
// '-XepOpt:NullAway:AnnotatedPackages=butterknife',
// ]
//}
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')
}
}
}
}