austynm
10/26/2017, 7:47 PMgradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "500"
}
}
kapt {
javacOptions {
option("-Xmaxerrs", 500)
}
}
orangy
11/02/2017, 6:11 PMyan
11/03/2017, 12:40 AMaustynm
11/04/2017, 12:03 AMkapt.javacOptions
is passing the value correctly (setting to 150 limited the error output correctly, setting to 200 showed all 190 error messages). It still does not fix the underlying kapt exception though.