com.atlassian.performance.tools.gradle-release
Owner: Atlassian Gradle Plugins
Performance Tools release plugin
https://bitbucket.org/atlassian/gradle-release
Sources: https://bitbucket.org/atlassian/gradle-release
Version 0.10.0 (latest)
0.10.0
Created 14 June 2024.
Performance Tools release plugin
Using the plugins DSL:
plugins {
id("com.atlassian.performance.tools.gradle-release") version "0.10.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.atlassian.performance.tools:gradle-release:0.10.0")
}
}
apply(plugin = "com.atlassian.performance.tools.gradle-release")
Using the plugins DSL:
plugins {
id "com.atlassian.performance.tools.gradle-release" version "0.10.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.atlassian.performance.tools:gradle-release:0.10.0"
}
}
apply plugin: "com.atlassian.performance.tools.gradle-release"