Search Gradle plugins

Version 0.14.0 (latest)

0.14.0

Created 22 September 2024.

Helper plugin for Minecraft mods using the Fabric modloader

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.ladysnake.chenille") version "0.14.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.ladysnake:chenille:0.14.0")
      }
    }
    
    apply(plugin = "io.github.ladysnake.chenille")
  • Applying plugins to all subprojects .