hu.advancedweb.scott-gradle-plugin
Owner: David Csakvari
Scott provides detailed failure messages for tests written in Java, without the use of complex assertion libraries to aid developers in rapid development, troubleshooting and debugging of tests. All information is presented on the source code of the test method as comments.
https://github.com/dodie/scott
Sources: https://github.com/dodie/scott.git
Version 4.0.1 (latest)
Created 29 September 2021.
Add this plugin to your build using the plugins DSL:
plugins {
id("hu.advancedweb.scott-gradle-plugin") version "4.0.1"
}
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("hu.advancedweb.scott-gradle-plugin:hu.advancedweb.scott-gradle-plugin.gradle.plugin:4.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("hu.advancedweb.scott-gradle-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("hu.advancedweb.scott-gradle-plugin:hu.advancedweb.scott-gradle-plugin.gradle.plugin:4.0.1") } } apply(plugin = "hu.advancedweb.scott-gradle-plugin")
- Applying plugins to all subprojects .