Search Gradle plugins

Version 1.0.0-beta04

1.0.0-beta04

Created 04 March 2024.

Automates project workflows, Maven publishing, and documentation generation.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.teogor.winds") version "1.0.0-beta04"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.teogor.winds:gradle-plugin:1.0.0-beta04")
      }
    }
    
    apply(plugin = "dev.teogor.winds")
  • Applying plugins to all subprojects .