搜索 Gradle 插件

版本 0.19.1 (最新)

0.19.1

创建于 2024年7月31日。

为 com.redmadrobot.kotlin-library 设置配置

使用插件 DSL

plugins {
  id("com.redmadrobot.kotlin-config") version "0.19.1"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.redmadrobot.build:infrastructure-kotlin:0.19.1")
  }
}

apply(plugin = "com.redmadrobot.kotlin-config")

使用插件 DSL

plugins {
  id "com.redmadrobot.kotlin-config" version "0.19.1"
}

使用旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.redmadrobot.build:infrastructure-kotlin:0.19.1"
  }
}

apply plugin: "com.redmadrobot.kotlin-config"

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