Search Gradle plugins

Version 0.3.0 (latest)

Created 11 January 2021.

Gradle plugin apply ForgeGradle, CurseGradle and Galacticraft Dependencies

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "net.rom.readonlygradle"

Learn how to apply plugins to subprojects