Search Gradle plugins

Version 0.0.4

Created 21 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.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.spark.coadjutor:coadjutor:0.0.4")
  }
}

apply(plugin = "net.spark.coadjutor")

Using the plugins DSL:

plugins {
  id "net.spark.coadjutor" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.spark.coadjutor:coadjutor:0.0.4"
  }
}

apply plugin: "net.spark.coadjutor"

Learn how to apply plugins to subprojects