Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 19 July 2024.

A plugin that helps you easy to publish aar or jar

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.electrolytej.module-publisher-plugin") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.electrolytej:module-publisher-gradle-plugin:1.0.0")
      }
    }
    
    apply(plugin = "io.github.electrolytej.module-publisher-plugin")
  • Applying plugins to all subprojects .