Search Gradle plugins

io.hkhc.jarbird-android

Wrapping boilerplate code of publishing artifact to maven repository (for Android project)

https://hkhc.github.io/jarbird/

Sources: https://github.com/hkhc/jarbird

Version 0.7.0 (latest)

Created 21 June 2021.

Wrapping boilerplate code of publishing artifact to maven repository (for Android project)

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.hkhc.jarbird-android") version "0.7.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.hkhc.jarbird-android:io.hkhc.jarbird-android.gradle.plugin:0.7.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.hkhc.jarbird-android")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.hkhc.jarbird-android:io.hkhc.jarbird-android.gradle.plugin:0.7.0")
      }
    }
    
    apply(plugin = "io.hkhc.jarbird-android")
  • Applying plugins to all subprojects .