Search Gradle plugins

xyz.beengoo.run-folia

Owner: Oleg

Download and run Folia server with your plugin staged automatically.

https://github.com/beengoo/run-folia

Sources: https://github.com/beengoo/run-folia

Version 0.1.0 (latest)

Created 24 September 2025.

Download and run Folia server with your plugin staged automatically.

Add this plugin to your build using the plugins DSL:

plugins {
  id("xyz.beengoo.run-folia") version "0.1.0"
}

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("xyz.beengoo.run-folia:xyz.beengoo.run-folia.gradle.plugin:0.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("xyz.beengoo.run-folia")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("xyz.beengoo.run-folia:xyz.beengoo.run-folia.gradle.plugin:0.1.0")
      }
    }
    
    apply(plugin = "xyz.beengoo.run-folia")
  • Applying plugins to all subprojects .