搜索 Gradle 插件

版本 0.0.5(最新版)

0.0.5

创建日期:2021年4月25日。

linkester 库的插件,用于自动收集所有深层链接。

使用 插件 DSL

plugins {
  id("com.mlegy.linkester") version "0.0.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.mlegy.linkester:gradle-plugin:0.0.5")
  }
}

apply(plugin = "com.mlegy.linkester")

使用 插件 DSL

plugins {
  id "com.mlegy.linkester" version "0.0.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.mlegy.linkester:gradle-plugin:0.0.5"
  }
}

apply plugin: "com.mlegy.linkester"

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