io.github.leandroborgesferreira.dag-command
Owner: Leandro Borges Ferreira
Unit tests only the changed modules in the dependencies graph
https://github.com/leandroBorgesFerreira/dag-command/
Sources: https://github.com/leandroBorgesFerreira/dag-command/
Version 1.7.1-SNAP2
1.7.1-SNAP2
Created 21 May 2023.
Unit tests only the changed modules in the dependencies graph
Using the plugins DSL:
plugins {
id("io.github.leandroborgesferreira.dag-command") version "1.7.1-SNAP2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.leandroborgesferreira:dag-command:1.7.1-SNAP2")
}
}
apply(plugin = "io.github.leandroborgesferreira.dag-command")
Using the plugins DSL:
plugins {
id "io.github.leandroborgesferreira.dag-command" version "1.7.1-SNAP2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.leandroborgesferreira:dag-command:1.7.1-SNAP2"
}
}
apply plugin: "io.github.leandroborgesferreira.dag-command"