搜索 Gradle 插件

版本 3.11.2(最新版)

3.11.2

创建于 2024 年 7 月 9 日。

Rico 插件管理 spring boot 应用的依赖自动配置

使用 插件 DSL

plugins {
  id("com.github.rico.ro-app") version "3.11.2"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.rico:ro-app:3.11.2")
  }
}

apply(plugin = "com.github.rico.ro-app")

使用 插件 DSL

plugins {
  id "com.github.rico.ro-app" version "3.11.2"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.rico:ro-app:3.11.2"
  }
}

apply plugin: "com.github.rico.ro-app"

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