Skip to content

Commit 29f0c56

Browse files
committed
MinieLibrary/build.gradle: add an option for deprecation warnings
1 parent 648dc37 commit 29f0c56

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

MinieLibrary/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ plugins {
1212
alias(libs.plugins.download) // to retrieve files from URLs
1313
}
1414

15+
tasks.withType(JavaCompile).configureEach { // Java compile-time options:
16+
//options.deprecation = true // to provide detailed deprecation warnings
17+
}
18+
1519
ext {
1620
if (rootProject.hasProperty('btdebug')) {
1721
// -Pbtdebug specified on the command line

0 commit comments

Comments
 (0)