com.gradle.plugin-publish
Owner: Gradle
Publish plugins to the Gradle Plugin Portal
https://plugins.gradle.org/docs/publish-plugin
Sources: http://www.gradleware.com
Version 1.3.0 (latest)
1.3.0
Created 11 September 2024.
- Enhance shadow integration to account for the move to com.gradleup.shadow plugin id
- Update sigstore support to the 1.0.0 extension of `.sigstore.json`
Using the plugins DSL:
plugins {
id("com.gradle.plugin-publish") version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gradle.publish:plugin-publish-plugin:1.3.0")
}
}
apply(plugin = "com.gradle.plugin-publish")
Using the plugins DSL:
plugins {
id "com.gradle.plugin-publish" version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:1.3.0"
}
}
apply plugin: "com.gradle.plugin-publish"