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)

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.hkhc.gradle:jarbird-android:0.7.0")
  }
}

apply(plugin = "io.hkhc.jarbird-android")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.hkhc.gradle:jarbird-android:0.7.0"
  }
}

apply plugin: "io.hkhc.jarbird-android"

Learn how to apply plugins to subprojects