com.gradle.enterprise.gradle-enterprise-conventions-plugin
Owner: Gradle
Gradle Enterprise Conventions Plugin
https://github.com/gradle/gradle-enterprise-conventions-plugin
Sources: https://github.com/gradle/gradle-enterprise-conventions-plugin.git
Version 0.8-alpha1 (latest)
0.8-alpha1
Created 17 December 2020.
Gradle Enterprise Conventions Plugin
Using the plugins DSL:
plugins {
id("com.gradle.enterprise.gradle-enterprise-conventions-plugin") version "0.8-alpha1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gradle.enterprise:gradle-enterprise-conventions-plugin:0.8-alpha1")
}
}
apply(plugin = "com.gradle.enterprise.gradle-enterprise-conventions-plugin")
Using the plugins DSL:
plugins {
id "com.gradle.enterprise.gradle-enterprise-conventions-plugin" version "0.8-alpha1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.enterprise:gradle-enterprise-conventions-plugin:0.8-alpha1"
}
}
apply plugin: "com.gradle.enterprise.gradle-enterprise-conventions-plugin"