BobStore/config/errorprone.gradle
Hans-Christoph Steiner 309694458b some safe library version bimps
This is a collection of minor version updates for included libraries
that should be safe to do.  Doing this at the very beginning of the
release cycle so they'll be tested.

thanks @TacoTheDank for finding these

fdroid/fdroidclient!776

Some related changelogs:
* https://github.com/FasterXML/jackson/wiki/Jackson-Release-2.8.11
* https://github.com/jmdns/jmdns/releases
2018-12-31 17:36:33 +01:00

36 lines
929 B
Groovy

buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.16"
}
}
apply plugin: "net.ltgt.errorprone"
tasks.withType(JavaCompile) {
options.compilerArgs += [
'-XepAllDisabledChecksAsWarnings',
'-Xep:CatchFail:OFF',
'-Xep:ClassCanBeStatic:OFF',
'-Xep:DateFormatConstant:OFF',
'-Xep:DefaultCharset:OFF',
'-Xep:FormatString:OFF',
'-Xep:JavaLangClash:OFF',
'-Xep:MissingCasesInEnumSwitch:OFF',
'-Xep:MissingOverride:OFF',
'-Xep:NonAtomicVolatileUpdate:OFF',
'-Xep:OperatorPrecedence:OFF',
'-Xep:StringSplitter:OFF',
'-Xep:UnsynchronizedOverridesSynchronized:OFF',
]
}
configurations.errorprone {
resolutionStrategy.force 'com.google.errorprone:error_prone_core:2.2.0'
}