Search Gradle plugins

Owner: Nikita

Gradle conventions for Gerda organization projects

https://fotontv.fun/

Sources: https://github.com/GerdaMC/GerdaGradle

Version 1.0.0 (latest)

Created 01 February 2022.

Gradle conventions for Gerda organization projects

Add this plugin to your build using the plugins DSL:

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