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.2.0-alpha.0 (latest)
0.2.0-alpha.0
Created 27 October 2024.
Plugin to assist with developing resource packs for Minecraft
Using the plugins DSL:
plugins {
id("net.bladehunt.rpp") version "0.2.0-alpha.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.bladehunt:rpp-gradle-plugin:0.2.0-alpha.0")
}
}
apply(plugin = "net.bladehunt.rpp")
Using the plugins DSL:
plugins {
id "net.bladehunt.rpp" version "0.2.0-alpha.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.bladehunt:rpp-gradle-plugin:0.2.0-alpha.0"
}
}
apply plugin: "net.bladehunt.rpp"