Skip to content

Commit

Permalink
Use gradle up to date format
Browse files Browse the repository at this point in the history
  • Loading branch information
sebr72 committed Jan 22, 2025
1 parent c4e3b16 commit 6f8b2b6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,10 @@ static def gitRevision() {
return gitRev != null ? gitRev : 'git rev-parse HEAD'.execute().text.trim()
}

compileTestJava.options.compilerArgs = ['-Xlint:deprecation', '-Xlint:unchecked']
compileTestJava {
options.deprecation = true
options.compilerArgs = ['-Xlint:unchecked']
}

// Add version to resources, used for User-Agent string:
processResources {
Expand Down

0 comments on commit 6f8b2b6

Please sign in to comment.