xyz.jpenilla.resource-factory-paper-convention
Owner: Jason Penilla
Convention for xyz.jpenilla.resource-factory, registers a PaperPluginYml to the main source set and adds it as the paperPluginYml extension
https://github.com/jpenilla/resource-factory
Sources: https://github.com/jpenilla/resource-factory
Version 1.1.2
1.1.2
Created 18 July 2024.
Convention for xyz.jpenilla.resource-factory, registers a PaperPluginYaml to the main source set and adds it as the paperPluginYaml extension
Using the plugins DSL:
plugins {
id("xyz.jpenilla.resource-factory-paper-convention") version "1.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("xyz.jpenilla:resource-factory:1.1.2")
}
}
apply(plugin = "xyz.jpenilla.resource-factory-paper-convention")
Using the plugins DSL:
plugins {
id "xyz.jpenilla.resource-factory-paper-convention" version "1.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "xyz.jpenilla:resource-factory:1.1.2"
}
}
apply plugin: "xyz.jpenilla.resource-factory-paper-convention"