Search Gradle plugins

dev.simplix.helper.bungee

Owner: Leonhard

Generate bungee.yml for BungeeCord plugins based on the Gradle project

https://simplixsoft.com/

Sources: https://simplixsoft.com/

Version 1.0.1

Created 02 February 2022.

Generate bungee.yml for BungeeCord plugins based on the Gradle project

Using the plugins DSL:

plugins {
  id("dev.simplix.helper.bungee") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.simplix.helper:plugin-yml:1.0.1")
  }
}

apply(plugin = "dev.simplix.helper.bungee")

Using the plugins DSL:

plugins {
  id "dev.simplix.helper.bungee" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.simplix.helper:plugin-yml:1.0.1"
  }
}

apply plugin: "dev.simplix.helper.bungee"

Learn how to apply plugins to subprojects