com.link-intersystems.gradle.publication-utils
Owner: René Link
A collection of utility tasks to deal with publications related stuff like checking if publications are already published to a remote repository.
https://github.com/link-intersystems/lis-gradle-plugins
Sources: https://github.com/link-intersystems/lis-gradle-plugins.git
Version 0.6.0 (latest)
0.6.0
Created 09 September 2024.
A collection of utility tasks to deal with publications related stuff like checking if publications are already published to a remote repository.
Using the plugins DSL:
plugins {
id("com.link-intersystems.gradle.publication-utils") version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.link-intersystems.gradle.plugins:publication-utils-plugin:0.6.0")
}
}
apply(plugin = "com.link-intersystems.gradle.publication-utils")
Using the plugins DSL:
plugins {
id "com.link-intersystems.gradle.publication-utils" version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.link-intersystems.gradle.plugins:publication-utils-plugin:0.6.0"
}
}
apply plugin: "com.link-intersystems.gradle.publication-utils"