com.github.rahulsom.waena.published
Owner: Rahul Somasunderam
Marks a module as one to be published 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.
Marks a module as one to be published to Maven Central.
Using the plugins DSL:
plugins {
id("com.github.rahulsom.waena.published") 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.published")
Using the plugins DSL:
plugins {
id "com.github.rahulsom.waena.published" 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.published"