搜索Gradle插件

版本 1.0.0(最新版)

1.0.0

创建日期:2023年8月1日。

基于阿里云的Gradle远程构建缓存

使用插件DSL

plugins {
  id("io.github.neas-neas.alibuildcache") version "1.0.0"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.neas-neas:alibuildcache:1.0.0")
  }
}

apply(plugin = "io.github.neas-neas.alibuildcache")

使用插件DSL

plugins {
  id "io.github.neas-neas.alibuildcache" version "1.0.0"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.neas-neas:alibuildcache:1.0.0"
  }
}

apply plugin: "io.github.neas-neas.alibuildcache"

了解如何将插件应用于子项目