Search Gradle plugins

xyz.jpenilla.resource-factory-bungee-convention

Convention for xyz.jpenilla.resource-factory, registers a BungeePluginYml to the main source set and adds it as the bungeePluginYml extension

https://github.com/jpenilla/resource-factory

Sources: https://github.com/jpenilla/resource-factory

Version 0.0.6

Created 24 March 2024.

Convention for xyz.jpenilla.resource-factory, registers a BungeePluginYml to the main source set and adds it as the bungeePluginYml extension

Using the plugins DSL:

plugins {
  id("xyz.jpenilla.resource-factory-bungee-convention") version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("xyz.jpenilla:resource-factory:0.0.6")
  }
}

apply(plugin = "xyz.jpenilla.resource-factory-bungee-convention")

Using the plugins DSL:

plugins {
  id "xyz.jpenilla.resource-factory-bungee-convention" version "0.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "xyz.jpenilla:resource-factory:0.0.6"
  }
}

apply plugin: "xyz.jpenilla.resource-factory-bungee-convention"

Learn how to apply plugins to subprojects