mirror of
https://github.com/revanced/revanced-cli.git
synced 2025-04-30 06:34:29 +02:00
build: exclude Kotlin standard library dependencies from minimizing
This commit is contained in:
parent
7d1f200621
commit
4e53638cb9
@ -41,7 +41,9 @@ tasks {
|
|||||||
manifest {
|
manifest {
|
||||||
attributes("Main-Class" to "app.revanced.cli.main.MainKt")
|
attributes("Main-Class" to "app.revanced.cli.main.MainKt")
|
||||||
}
|
}
|
||||||
minimize()
|
minimize {
|
||||||
|
exclude(dependency("org.jetbrains.kotlin:.*"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Dummy task to fix the Gradle semantic-release plugin.
|
// Dummy task to fix the Gradle semantic-release plugin.
|
||||||
// Remove this if you forked it to support building only.
|
// Remove this if you forked it to support building only.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user