Skip to content

Commit

Permalink
fix convention
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Dec 7, 2024
1 parent 820d7f1 commit e28efaa
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ abstract class JVMDowngraderExtension @Inject constructor(@get:Internal val proj
logLevel.convention("INFO").finalizeValueOnRead()
ignoreWarningsIn.convention(emptySet()).finalizeValueOnRead()
debug.convention(false).finalizeValueOnRead()
debugSkipStub.convention(emptySet()).finalizeValueOnRead()
debugSkipStubs.convention(emptySet()).finalizeValueOnRead()
debugDumpClasses.convention(false).finalizeValueOnRead()
shadePath.convention { it.substringBefore(".").substringBeforeLast("-").replace(Regex("[.;\\[/]"), "-") + "/" }
Expand All @@ -88,6 +89,7 @@ abstract class JVMDowngraderExtension @Inject constructor(@get:Internal val proj
flags.apiJar.convention(apiJar).finalizeValueOnRead()
flags.quiet.convention(quiet).finalizeValueOnRead()
flags.debug.convention(debug).finalizeValueOnRead()
flags.debugSkipStub.convention(debugSkipStub).finalizeValueOnRead()
flags.debugSkipStubs.convention(debugSkipStubs).finalizeValueOnRead()
}

Expand Down

0 comments on commit e28efaa

Please sign in to comment.