Search Gradle plugins

Version 0.6.1 (latest)

Created 26 December 2022.

Configures the root project to publish to Maven Central.

Using the plugins DSL:

plugins {
  id("com.github.rahulsom.waena.root") version "0.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("waena:plugin:0.6.1")
  }
}

apply(plugin = "com.github.rahulsom.waena.root")

Using the plugins DSL:

plugins {
  id "com.github.rahulsom.waena.root" version "0.6.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "waena:plugin:0.6.1"
  }
}

apply plugin: "com.github.rahulsom.waena.root"

Learn how to apply plugins to subprojects