搜索 Gradle 插件

io.github.godfather1103.gradle-base-plugin

所有者: Jack Chu

封装了一些常见的语法,例如设置 Java 选项编码=UTF-8,在清理时清除 Maven 目标目录。

https://github.com/godfather1103

源代码: https://github.com/godfather1103/gradle-base-plugin

版本 1.6(最新版)

1.6

创建于 2022 年 7 月 16 日。

封装了一些常见的语法,例如设置 Java 选项编码=UTF-8,在清理时清除 Maven 目标目录。

使用 plugins DSL

plugins {
  id("io.github.godfather1103.gradle-base-plugin") version "1.6"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.godfather1103:gradle-base-plugin:1.6")
  }
}

apply(plugin = "io.github.godfather1103.gradle-base-plugin")

使用 plugins DSL

plugins {
  id "io.github.godfather1103.gradle-base-plugin" version "1.6"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.godfather1103:gradle-base-plugin:1.6"
  }
}

apply plugin: "io.github.godfather1103.gradle-base-plugin"

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