搜索Gradle插件

版本 0.0.2 (最新版)

0.0.2

创建于2021年2月20日。

✨ 一个扩展现有Gradle Kotlin DSL的Gradle插件。

使用插件DSL

plugins {
  id("blue.starry.scriptextender") version "0.0.2"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("blue.starry:gradle-script-extender:0.0.2")
  }
}

apply(plugin = "blue.starry.scriptextender")

使用插件DSL

plugins {
  id "blue.starry.scriptextender" version "0.0.2"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "blue.starry:gradle-script-extender:0.0.2"
  }
}

apply plugin: "blue.starry.scriptextender"

了解如何应用插件到子项目