From b1e9208be664e064d9a8e12455dbaff082cf7567 Mon Sep 17 00:00:00 2001 From: afischerdev Date: Fri, 12 Jul 2024 09:54:57 +0200 Subject: [PATCH] added compiler params --- brouter-routing-app/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/brouter-routing-app/build.gradle b/brouter-routing-app/build.gradle index a853fdf..7dc0085 100644 --- a/brouter-routing-app/build.gradle +++ b/brouter-routing-app/build.gradle @@ -159,3 +159,8 @@ task generateReadmesZip(type: Zip) { } destinationDirectory = layout.buildDirectory.dir("assets") } + +tasks.withType(JavaCompile).configureEach { + options.compilerArgs += ['-Xlint:unchecked'] + options.compilerArgs += ['-Xlint:deprecation'] +}