net.rom.readonlygradle
Owner: ROM
Gradle plugin apply ForgeGradle, CurseGradle and Galacticraft Dependencies
https://github.com/ROMVoid95/ReadOnlyGradle
Sources: https://github.com/ROMVoid95/ReadOnlyGradle
Version 0.3.0 (latest)
0.3.0
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"