org.utbot.gradle.plugin
Owner:
UnitTestBot
The gradle plugin for generating tests and creating SARIF reports based on UnitTestBot
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
Add this plugin to your build using the plugins DSL:
plugins {
id("org.utbot.gradle.plugin") version "1.0.0-alpha"
}
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("org.utbot.gradle.plugin:org.utbot.gradle.plugin.gradle.plugin:1.0.0-alpha") }
It can then be applied in the precompiled script plugin:plugins { id("org.utbot.gradle.plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.utbot.gradle.plugin:org.utbot.gradle.plugin.gradle.plugin:1.0.0-alpha") } } apply(plugin = "org.utbot.gradle.plugin")
- Applying plugins to all subprojects .