io.github.qux7.testnotrunerror
Owner: Qux Seven
Detects test configuration errors: build fails if you misconfigure tests and they do not run
https://github.com/qux7/gradle-testnotrunerror
Sources: https://github.com/qux7/gradle-testnotrunerror
Version 0.1.2 (latest)
Created 02 September 2024.
Detects test configuration errors: build fails if you misconfigure tests and they do not run
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.qux7.testnotrunerror") version "0.1.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("io.github.qux7.testnotrunerror:io.github.qux7.testnotrunerror.gradle.plugin:0.1.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.qux7.testnotrunerror") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.qux7.testnotrunerror:io.github.qux7.testnotrunerror.gradle.plugin:0.1.2") } } apply(plugin = "io.github.qux7.testnotrunerror")
- Applying plugins to all subprojects .