搜索 Gradle 插件

dev.teogor.querent

所有者: Teodor Grigor

Querent 为您的项目资源管理打下基础,促进开发流程中的一致性和效率。

https://source.teogor.dev/querent/

来源: https://github.com/teogor/querent

版本 1.0.0-alpha03-SNAPSHOT-8f9a736 (最新)

1.0.0-alpha03-SNAPSHOT-8f9a736

创建于 2024年3月4日。

Querent 为您的项目资源管理打下基础,促进开发流程中的一致性和效率。

使用 plugins DSL

plugins {
  id("dev.teogor.querent") version "1.0.0-alpha03-SNAPSHOT-8f9a736"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("dev.teogor.querent:gradle-plugin:1.0.0-alpha03-SNAPSHOT-8f9a736")
  }
}

apply(plugin = "dev.teogor.querent")

使用 plugins DSL

plugins {
  id "dev.teogor.querent" version "1.0.0-alpha03-SNAPSHOT-8f9a736"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "dev.teogor.querent:gradle-plugin:1.0.0-alpha03-SNAPSHOT-8f9a736"
  }
}

apply plugin: "dev.teogor.querent"

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