Search Gradle plugins

Version 0.3.1 (latest)

0.3.1

Created 28 January 2024.

Adds support for Fabric's access wideners to non-Minecraft projects.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.redstonneur1256.gradle-access-widener") version "0.3.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.redstonneur1256:GradleAccessWidener:0.3.1")
      }
    }
    
    apply(plugin = "io.github.redstonneur1256.gradle-access-widener")
  • Applying plugins to all subprojects .