io.hkhc.jarbird
Owner: Herman Cheung
Intelligent configuration for publishing artifact to maven repository
https://hkhc.github.io/jarbird/
Sources: https://github.com/hkhc/jarbird
Version 0.7.0 (latest)
0.7.0
Created 21 June 2021.
Wrapping boilerplate code of publishing artifact to maven repository
Using the plugins DSL:
plugins {
id("io.hkhc.jarbird") version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.hkhc.gradle:jarbird:0.7.0")
}
}
apply(plugin = "io.hkhc.jarbird")
Using the plugins DSL:
plugins {
id "io.hkhc.jarbird" version "0.7.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.hkhc.gradle:jarbird:0.7.0"
}
}
apply plugin: "io.hkhc.jarbird"