Search Gradle plugins

ai.qodo.plugin.cover-agent

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.1 (latest)

0.0.1

Created 08 October 2024.

A plugin to use Cover Agent in Gradle. https://github.com/Codium-ai/cover-agent?tab=readme-ov-file#installation-and-usage

Using the plugins DSL:

plugins {
  id("ai.qodo.plugin.cover-agent") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ai.qodo:cover-agent-plugin:0.0.1")
  }
}

apply(plugin = "ai.qodo.plugin.cover-agent")

Using the plugins DSL:

plugins {
  id "ai.qodo.plugin.cover-agent" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ai.qodo:cover-agent-plugin:0.0.1"
  }
}

apply plugin: "ai.qodo.plugin.cover-agent"

Learn how to apply plugins to subprojects