Search Gradle plugins

Version 0.2.0

Created 23 June 2020.

Gradle plugin apply ForgeGradle, CurseGradle and Galacticraft Dependencies

Using the plugins DSL:

plugins {
  id("net.rom.romgradle") version "0.2.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "net.rom.romgradle" version "0.2.0"
}

Using legacy plugin application:

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

apply plugin: "net.rom.romgradle"

Learn how to apply plugins to subprojects