mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Pin the errorprone version to 2.0.5
This commit is contained in:
parent
227ef2c5ae
commit
73179072e9
1 changed files with 7 additions and 0 deletions
|
@ -165,6 +165,13 @@ allprojects {
|
||||||
tasks.withType(Javadoc) {
|
tasks.withType(Javadoc) {
|
||||||
options.charSet = "UTF-8"
|
options.charSet = "UTF-8"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Pin the errorprone version to prevent "unsupported major.minor
|
||||||
|
// version 52.0" error messages caused by the errorprone javac.
|
||||||
|
// See https://github.com/tbroyer/gradle-errorprone-plugin/issues/18 for more information.
|
||||||
|
configurations.errorprone {
|
||||||
|
resolutionStrategy.force 'com.google.errorprone:error_prone_core:2.0.5'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
gradle.taskGraph.whenReady { taskGraph ->
|
gradle.taskGraph.whenReady { taskGraph ->
|
||||||
|
|
Loading…
Reference in a new issue