net.spark.coadjutor
Owner: Spark Networks
Plugin to configure test modules and encrypted credentials in gradle.properties file
https://github.com/Spark-Networks/coadjutor/
Sources: https://github.com/Spark-Networks/coadjutor
Version 0.0.6 (latest)
0.0.6
Created 22 July 2022.
Plugin to configure test modules and encrypted credentials in gradle.properties file
Using the plugins DSL:
plugins {
id("net.spark.coadjutor") version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.spark.coadjutor:coadjutor:0.0.6")
}
}
apply(plugin = "net.spark.coadjutor")
Using the plugins DSL:
plugins {
id "net.spark.coadjutor" version "0.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.spark.coadjutor:coadjutor:0.0.6"
}
}
apply plugin: "net.spark.coadjutor"