com.github.rahulsom.waena.root
Owner:
Rahul Somasunderam
Configures the root project to publish to Maven Central.
https://github.com/rahulsom/waena
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"