搜索Gradle插件

版本 0.8-alpha1(最新版)

0.8-alpha1

创建于 2020年12月17日。

Gradle Enterprise Conventions Plugin

使用 插件 DSL

plugins {
  id("com.gradle.enterprise.gradle-enterprise-conventions-plugin") version "0.8-alpha1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.gradle.enterprise:gradle-enterprise-conventions-plugin:0.8-alpha1")
  }
}

apply(plugin = "com.gradle.enterprise.gradle-enterprise-conventions-plugin")

使用 插件 DSL

plugins {
  id "com.gradle.enterprise.gradle-enterprise-conventions-plugin" version "0.8-alpha1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.gradle.enterprise:gradle-enterprise-conventions-plugin:0.8-alpha1"
  }
}

apply plugin: "com.gradle.enterprise.gradle-enterprise-conventions-plugin"

学习如何将插件应用于子项目