io.github.electrolytej.module-publisher-plugin
Owner: electrolytej
A plugin that helps you easy to publish aar or jar
https://github.com/big-frontend/module-assembler/tree/main/module-publisher-gradle-plugin
Sources: https://github.com/big-frontend/module-assembler.git
Version 1.0.0 (latest)
1.0.0
Created 19 July 2024.
A plugin that helps you easy to publish aar or jar
Using the plugins DSL:
plugins {
id("io.github.electrolytej.module-publisher-plugin") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.electrolytej:module-publisher-gradle-plugin:1.0.0")
}
}
apply(plugin = "io.github.electrolytej.module-publisher-plugin")
Using the plugins DSL:
plugins {
id "io.github.electrolytej.module-publisher-plugin" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.electrolytej:module-publisher-gradle-plugin:1.0.0"
}
}
apply plugin: "io.github.electrolytej.module-publisher-plugin"