Search Gradle plugins

Version 0.2.3

Created 24 June 2020.

Gradle plugin apply ForgeGradle, CurseGradle and Galacticraft Dependencies

Using the plugins DSL:

plugins {
  id("net.rom.readonlygradle") version "0.2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.rom.readonlygradle:ReadOnlyGradle:0.2.3")
  }
}

apply(plugin = "net.rom.readonlygradle")

Using the plugins DSL:

plugins {
  id "net.rom.readonlygradle" version "0.2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.rom.readonlygradle:ReadOnlyGradle:0.2.3"
  }
}

apply plugin: "net.rom.readonlygradle"

Learn how to apply plugins to subprojects