blob: 1018a234a74ec8870d65005b3c974e4708c73895 [file] [log] [blame] [edit]
apply plugin: 'com.github.ben-manes.versions'
buildscript {
ext.versions = [
'minSdk': 14,
'compileSdk': 28,
'errorProne': '2.3.1',
'kotlin': '1.3.11',
]
ext.deps = [
'kotlin': [
'gradlePlugin': "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}",
'stdLib': [
'common': "org.jetbrains.kotlin:kotlin-stdlib-common:${versions.kotlin}",
'jdk8': "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${versions.kotlin}",
'jdk7': "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}",
'jdk6': "org.jetbrains.kotlin:kotlin-stdlib:${versions.kotlin}"
],
'reflect': "org.jetbrains.kotlin:kotlin-reflect:${versions.kotlin}",
'test': [
'common': "org.jetbrains.kotlin:kotlin-test-common",
'annotations': "org.jetbrains.kotlin:kotlin-test-annotations-common",
'jdk': "org.jetbrains.kotlin:kotlin-test-junit"
]
]
]
repositories {
google()
maven { url 'https://plugins.gradle.org/m2/' }
jcenter()
}
dependencies {
classpath deps.kotlin.gradlePlugin
classpath 'com.android.tools.build:gradle:3.2.0'
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.16'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
}
}
subprojects {
group = GROUP
version = VERSION_NAME
repositories {
google()
// maven {
// url 'https://oss.sonatype.org/content/repositories/snapshots/'
// }
// mavenLocal()
jcenter()
}
apply plugin: 'net.ltgt.errorprone'
tasks.withType(JavaCompile) {
options.compilerArgs += [
'-Xlint:all',
'-Xlint:-serial',
'-Xlint:-deprecation',
// espresso-core classes say they're compiled with 51.0 but contain 52.0 attributes.
// warning: [classfile] MethodParameters attribute introduced in version 52.0 class files is ignored in version 51.0 class files
// '-Werror'
]
}
configurations.all {
resolutionStrategy {
eachDependency { details ->
// Force all the error-prone dependencies to use the same version.
if (details.requested.group == 'com.google.errorprone' &&
details.requested.name.startsWith('error_prone_')) {
details.useVersion versions.errorProne
}
}
}
}
tasks.withType(Test) {
testLogging {
exceptionFormat 'FULL'
showCauses true
showExceptions true
showStackTraces true
}
}
dependencies {
errorprone "com.google.errorprone:error_prone_core:${versions.errorProne}"
}
}