us.gov.dot.faa.ang.c55.gradle.huggs.test-configurator
Owner: Andrew A. Tasso
Gradle Plugin to assist in providing opinionated configuration of test tasks
https://gitlab.com/federal-aviation-administration/ang-c55/gradle/huggs-test-configurator
Sources: https://gitlab.com/federal-aviation-administration/ang-c55/gradle/huggs-test-configurator.git
Version 1.0.0 (latest)
1.0.0
Created 16 July 2021.
Gradle Plugin to assist in providing opinionated configuration of test tasks
Using the plugins DSL:
plugins {
id("us.gov.dot.faa.ang.c55.gradle.huggs.test-configurator") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("us.gov.dot.faa.ang.c55:huggs-test-configurator:1.0.0")
}
}
apply(plugin = "us.gov.dot.faa.ang.c55.gradle.huggs.test-configurator")
Using the plugins DSL:
plugins {
id "us.gov.dot.faa.ang.c55.gradle.huggs.test-configurator" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "us.gov.dot.faa.ang.c55:huggs-test-configurator:1.0.0"
}
}
apply plugin: "us.gov.dot.faa.ang.c55.gradle.huggs.test-configurator"