Search Gradle plugins

Version 0.6.1 (latest)

Created 26 December 2022.

Marks a module as one to be published to Maven Central.

Using the plugins DSL:

plugins {
  id("com.github.rahulsom.waena.published") 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.published")

Using the plugins DSL:

plugins {
  id "com.github.rahulsom.waena.published" 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.published"

Learn how to apply plugins to subprojects