build: exclude Bouncy Castle dependency from minimizing

This commit is contained in:
oSumAtrIX 2022-12-15 23:24:44 +01:00
parent eb6c659f5b
commit 8c2aeff2cf
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -43,6 +43,7 @@ tasks {
}
minimize {
exclude(dependency("org.jetbrains.kotlin:.*"))
exclude(dependency("org.bouncycastle:.*"))
}
}
// Dummy task to fix the Gradle semantic-release plugin.