Skip to content

Commit aaaeb4e

Browse files
authored
[ci skip] Make compilation logs actually readable (#12276)
* [ci skip] Make compilation logs actually readable * Specifically disable deprecation and removal warnings instead
1 parent 2d3a138 commit aaaeb4e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ subprojects {
3838
options.encoding = Charsets.UTF_8.name()
3939
options.release = 21
4040
options.isFork = true
41+
options.compilerArgs.addAll(listOf("-Xlint:-deprecation", "-Xlint:-removal"))
4142
}
4243
tasks.withType<Javadoc> {
4344
options.encoding = Charsets.UTF_8.name()

0 commit comments

Comments
 (0)