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 1.1.1 (latest)

Created 02 April 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects