搜索 Gradle 插件

版本 1.2.5 (最新)

1.2.5

创建于 2024 年 3 月 7 日。

"一个便于设置 mongodb-search 配置的插件"

使用 插件 DSL

plugins {
  id("io.github.yearnlune.search.plugin") version "1.2.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.yearnlune.search:mongodb-search-gradle-plugin:1.2.5")
  }
}

apply(plugin = "io.github.yearnlune.search.plugin")

使用 插件 DSL

plugins {
  id "io.github.yearnlune.search.plugin" version "1.2.5"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.yearnlune.search:mongodb-search-gradle-plugin:1.2.5"
  }
}

apply plugin: "io.github.yearnlune.search.plugin"

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