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.4.2.3-SNAPSHOT
0.4.2.3-SNAPSHOT
Created 04 November 2020.
Wrapping boilerplate code of publishing artifact to maven repository
Using the plugins DSL:
plugins {
id("io.hkhc.jarbird") version "0.4.2.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.hkhc.gradle:jarbird:0.4.2.3-SNAPSHOT")
}
}
apply(plugin = "io.hkhc.jarbird")
Using the plugins DSL:
plugins {
id "io.hkhc.jarbird" version "0.4.2.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.hkhc.gradle:jarbird:0.4.2.3-SNAPSHOT"
}
}
apply plugin: "io.hkhc.jarbird"