com.github.rahulsom.waena.root
Owner: Rahul Somasunderam
Configures the root project to publish to Maven Central.
https://github.com/rahulsom/waena
Sources: https://github.com/rahulsom/waena.git
Version 0.7.2 (latest)
0.7.2
Created 02 October 2024.
Configures the root project to publish to Maven Central.
Using the plugins DSL:
plugins {
id("com.github.rahulsom.waena.root") version "0.7.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("waena:plugin:0.7.2")
}
}
apply(plugin = "com.github.rahulsom.waena.root")
Using the plugins DSL:
plugins {
id "com.github.rahulsom.waena.root" version "0.7.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "waena:plugin:0.7.2"
}
}
apply plugin: "com.github.rahulsom.waena.root"