dev.teogor.querent
Owner: Teodor Grigor
Querent lays the groundwork for your project's resource management, fostering consistency and efficiency across your development workflow.
https://source.teogor.dev/querent/
Sources: https://github.com/teogor/querent
Version 1.0.0-alpha03-SNAPSHOT-8f9a736 (latest)
Created 04 March 2024.
Querent lays the groundwork for your project's resource management, fostering consistency and efficiency across your development workflow.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.teogor.querent") version "1.0.0-alpha03-SNAPSHOT-8f9a736"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("dev.teogor.querent:dev.teogor.querent.gradle.plugin:1.0.0-alpha03-SNAPSHOT-8f9a736") }
It can then be applied in the precompiled script plugin:plugins { id("dev.teogor.querent") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.teogor.querent:dev.teogor.querent.gradle.plugin:1.0.0-alpha03-SNAPSHOT-8f9a736") } } apply(plugin = "dev.teogor.querent")
- Applying plugins to all subprojects .