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

Using the plugins DSL:

plugins {
  id("dev.mrbergin.run-dependency-tests") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.mrbergin:run-dependency-tests:0.0.1")
  }
}

apply(plugin = "dev.mrbergin.run-dependency-tests")

Using the plugins DSL:

plugins {
  id "dev.mrbergin.run-dependency-tests" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.mrbergin:run-dependency-tests:0.0.1"
  }
}

apply plugin: "dev.mrbergin.run-dependency-tests"

Learn how to apply plugins to subprojects