Search Gradle plugins

com.link-intersystems.gradle.publication-utils

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.5.5

0.5.5

Created 08 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.5.5"
}

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.5.5")
  }
}

apply(plugin = "com.link-intersystems.gradle.publication-utils")

Using the plugins DSL:

plugins {
  id "com.link-intersystems.gradle.publication-utils" version "0.5.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.link-intersystems.gradle.plugins:publication-utils-plugin:0.5.5"
  }
}

apply plugin: "com.link-intersystems.gradle.publication-utils"

Learn how to apply plugins to subprojects