Search Gradle plugins

hu.advancedweb.scott-gradle-plugin

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.0

4.0.0

Created 24 September 2021.

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("hu.advancedweb.scott-gradle-plugin") version "4.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.hu.advanceweb:scott-gradle-plugin:4.0.0")
      }
    }
    
    apply(plugin = "hu.advancedweb.scott-gradle-plugin")
  • Applying plugins to all subprojects .