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 3.4.1

Created 07 January 2019.

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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.hu.advanceweb:scott-gradle-plugin:3.4.1")
  }
}

apply(plugin = "hu.advancedweb.scott-gradle-plugin")

Using the plugins DSL:

plugins {
  id "hu.advancedweb.scott-gradle-plugin" version "3.4.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.hu.advanceweb:scott-gradle-plugin:3.4.1"
  }
}

apply plugin: "hu.advancedweb.scott-gradle-plugin"

Learn how to apply plugins to subprojects