mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2024-11-14 11:24:57 -05:00
Disable code signing for Jitpack (#813)
* Disable code signing on release
I'm doing the same thing in SkinsRestorer: b7baa862d8/buildSrc/src/main/kotlin/sr.base-logic.gradle.kts (L87-L89)
* Update buildSrc/src/main/kotlin/mcprotocollib.base-conventions.gradle.kts
Co-authored-by: Kas-tle <26531652+Kas-tle@users.noreply.github.com>
---------
Co-authored-by: Kas-tle <26531652+Kas-tle@users.noreply.github.com>
This commit is contained in:
parent
a724a8fdb4
commit
b9f5dd6973
1 changed files with 5 additions and 0 deletions
|
@ -18,6 +18,11 @@ indra {
|
|||
}
|
||||
}
|
||||
|
||||
if (System.getenv("JITPACK") == "true") {
|
||||
tasks.withType<Sign>().configureEach {
|
||||
onlyIf { false }
|
||||
}
|
||||
}
|
||||
lombok {
|
||||
version = libs.versions.lombok.version.get()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue