Search Gradle plugins

org.utbot.gradle.plugin

The gradle plugin for generating tests and creating SARIF reports based on UnitTestBot

https://www.utbot.org/

Sources: https://github.com/UnitTestBot/UTBotJava/

Version 1.0.0-alpha (latest)

Created 01 July 2022.

The gradle plugin for generating tests and creating SARIF reports based on UnitTestBot

Using the plugins DSL:

plugins {
  id("org.utbot.gradle.plugin") version "1.0.0-alpha"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.utbot:utbot-gradle:1.0.0-alpha")
  }
}

apply(plugin = "org.utbot.gradle.plugin")

Using the plugins DSL:

plugins {
  id "org.utbot.gradle.plugin" version "1.0.0-alpha"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.utbot:utbot-gradle:1.0.0-alpha"
  }
}

apply plugin: "org.utbot.gradle.plugin"

Learn how to apply plugins to subprojects