Search Gradle plugins

Version 0.1.0-alpha.1

0.1.0-alpha.1

Created 16 October 2024.

Tool to set up development environments for Minecraft mods

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.lukebemish.crochet") version "0.1.0-alpha.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.lukebemish:crochet:0.1.0-alpha.1")
      }
    }
    
    apply(plugin = "dev.lukebemish.crochet")
  • Applying plugins to all subprojects .