Skip to content

Commit

Permalink
Enable debug/parameters in compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Jun 8, 2024
1 parent 1385878 commit 8500614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ subprojects {
// Append options for unchecked/deprecation
gradle.projectsEvaluated {
tasks.withType(JavaCompile).configureEach {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation' << '-g' << '-parameters'
options.encoding = 'UTF-8'
options.incremental = true
}
Expand Down

0 comments on commit 8500614

Please sign in to comment.