Skip to content

Instantly share code, notes, and snippets.

@Turbojax07
Turbojax07 / tasks.md
Last active January 6, 2026 01:41
Turbo's Gradle Tasks

These are just gradle tasks I make that I think are kinda useful. Open to the public!

inject: Combines a source jar file and a second patch file. Useful when editing an existing jar file.

ext {
    sourceJar = <abs/relative path>
    patchedJar = <output>
}

task inject(type: Zip) {