搜索Gradle插件

版本 0.5.1(最新)

0.5.1

创建于2024年3月15日。

与华杉科技团队组,即"com.huanshankeji"一起

使用插件DSL

plugins {
  id("com.huanshankeji.team.with-group") version "0.5.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.huanshankeji.team:gradle-plugins:0.5.1")
  }
}

apply(plugin = "com.huanshankeji.team.with-group")

使用插件DSL

plugins {
  id "com.huanshankeji.team.with-group" version "0.5.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.huanshankeji.team:gradle-plugins:0.5.1"
  }
}

apply plugin: "com.huanshankeji.team.with-group"

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