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.0.3-SNAPSHOT
0.0.3-SNAPSHOT
Created 07 August 2018.
Performance Tools release plugin
Using the plugins DSL:
plugins {
id("com.atlassian.performance.tools.gradle-release") version "0.0.3-SNAPSHOT"
}
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.0.3-SNAPSHOT")
}
}
apply(plugin = "com.atlassian.performance.tools.gradle-release")
Using the plugins DSL:
plugins {
id "com.atlassian.performance.tools.gradle-release" version "0.0.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.atlassian.performance.tools:gradle-release:0.0.3-SNAPSHOT"
}
}
apply plugin: "com.atlassian.performance.tools.gradle-release"