Search Gradle plugins

net.somethingcatchy.gradle

bundles fabric/forge/common gradle plugins and provides useful default configurations for minecraft mod developers

https://github.com/pssbletrngle/gradlehelper

Sources: https://github.com/pssbletrngle/gradlehelper

Version 0.0.1

Created 14 July 2023.

bundles fabric/forge/common gradle plugins and provides useful default configurations for minecraft mod developers

Using the plugins DSL:

plugins {
  id("net.somethingcatchy.gradle") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.somethingcatchy:net.somethingcatchy.gradle:0.0.1")
  }
}

apply(plugin = "net.somethingcatchy.gradle")

Using the plugins DSL:

plugins {
  id "net.somethingcatchy.gradle" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.somethingcatchy:net.somethingcatchy.gradle:0.0.1"
  }
}

apply plugin: "net.somethingcatchy.gradle"

Learn how to apply plugins to subprojects