搜索 Gradle 插件

版本 0.2-SNAPSHOT (最新版本)

0.2-SNAPSHOT

创建于 2015 年 3 月 29 日。

Gradle 作业分析

使用 插件 DSL

plugins {
  id("com.developerb.taskProfilingPlugin") version "0.2-SNAPSHOT"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.developerb:taskProfilingPlugin:0.2-SNAPSHOT")
  }
}

apply(plugin = "com.developerb.taskProfilingPlugin")

使用 插件 DSL

plugins {
  id "com.developerb.taskProfilingPlugin" version "0.2-SNAPSHOT"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.developerb:taskProfilingPlugin:0.2-SNAPSHOT"
  }
}

apply plugin: "com.developerb.taskProfilingPlugin"

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