User: rednesto Date: 04 Jul 24 18:32 Revision: f1a1e0ad3ff95ea185f0b32cd2805b23574cc058 Summary: Disable code instrumentation We should not need it anymore now that the last forms are gone That should shorten the compilation time by a bit! TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=9348&personal=false Index: build.gradle.kts =================================================================== --- build.gradle.kts (revision ca003f90104183b54a82500a44edfe62bcc43082) +++ build.gradle.kts (revision f1a1e0ad3ff95ea185f0b32cd2805b23574cc058) @@ -398,3 +398,11 @@ // not working atm enabled = false } + +tasks.instrumentCode { + enabled = false +} + +tasks.instrumentedJar { + enabled = false +}