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.2
Created 14 October 2024.
Plugin to assist with developing resource packs for Minecraft
Add this plugin to your build using the plugins DSL:
plugins {
id("net.bladehunt.rpp") version "0.1.0-beta.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("net.bladehunt.rpp:net.bladehunt.rpp.gradle.plugin:0.1.0-beta.2") }It can then be applied in the precompiled script plugin:plugins { id("net.bladehunt.rpp") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.bladehunt.rpp:net.bladehunt.rpp.gradle.plugin:0.1.0-beta.2") } } apply(plugin = "net.bladehunt.rpp") - Applying plugins to all subprojects .