Search Gradle plugins

dev.mrbergin.run-dependency-tests

A Plugin that allows you to declare dependencies against a test task and have that task run them

https://github.com/mrbergin/run-dependency-tests

Sources: https://github.com/mrbergin/run-dependency-tests.git

Version 0.0.1 (latest)

Created 03 January 2022.

A Plugin that allows you to declare dependencies against a test task and have that task run them

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.mrbergin.run-dependency-tests") version "0.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("dev.mrbergin.run-dependency-tests:dev.mrbergin.run-dependency-tests.gradle.plugin:0.0.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("dev.mrbergin.run-dependency-tests")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.mrbergin.run-dependency-tests:dev.mrbergin.run-dependency-tests.gradle.plugin:0.0.1")
      }
    }
    
    apply(plugin = "dev.mrbergin.run-dependency-tests")
  • Applying plugins to all subprojects .