ai.qodo.plugin.cover-agent
Owner: David Parry
A plugin to use Cover Agent in Gradle. https://github.com/Codium-ai/cover-agent?tab=readme-ov-file#installation-and-usage
https://github.com/Codium-ai/gradle-cover-agent
Sources: https://github.com/Codium-ai/gradle-cover-agent.git
Version 0.0.2 (latest)
Created 24 December 2024.
A plugin to use Cover Agent in Gradle. https://github.com/Codium-ai/cover-agent?tab=readme-ov-file#installation-and-usage
Add this plugin to your build using the plugins DSL:
plugins {
id("ai.qodo.plugin.cover-agent") version "0.0.2"
}
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("ai.qodo.plugin.cover-agent:ai.qodo.plugin.cover-agent.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("ai.qodo.plugin.cover-agent") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ai.qodo.plugin.cover-agent:ai.qodo.plugin.cover-agent.gradle.plugin:0.0.2") } } apply(plugin = "ai.qodo.plugin.cover-agent")
- Applying plugins to all subprojects .