Search Gradle plugins

net.bladehunt.rpp

Owner: oglass

Plugin to assist with developing resource packs for Minecraft

https://github.com/bladehuntmc/rpp

Sources: https://github.com/bladehuntmc/rpp

Version 0.1.0-beta.0

0.1.0-beta.0

Created 13 October 2024.

Plugin to assist with developing resource packs for Minecraft

Using the plugins DSL:

plugins {
  id("net.bladehunt.rpp") version "0.1.0-beta.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.bladehunt:plugin:0.1.0-beta.0")
  }
}

apply(plugin = "net.bladehunt.rpp")

Using the plugins DSL:

plugins {
  id "net.bladehunt.rpp" version "0.1.0-beta.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.bladehunt:plugin:0.1.0-beta.0"
  }
}

apply plugin: "net.bladehunt.rpp"

Learn how to apply plugins to subprojects