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.5
Created 21 July 2022.
                Plugin to configure test modules and encrypted credentials in gradle.properties file
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("net.spark.coadjutor") version "0.0.5"
}
              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("net.spark.coadjutor:net.spark.coadjutor.gradle.plugin:0.0.5") }It can then be applied in the precompiled script plugin:plugins { id("net.spark.coadjutor") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.spark.coadjutor:net.spark.coadjutor.gradle.plugin:0.0.5") } } apply(plugin = "net.spark.coadjutor") - Applying plugins to all subprojects .