Search Gradle plugins

Version 0.1 (latest)

Created 09 October 2020.

Proton Gradle plugin

Using the plugins DSL:

plugins {
  id("me.proton.tests") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.me.proton:tests:0.1")
  }
}

apply(plugin = "me.proton.tests")

Using the plugins DSL:

plugins {
  id "me.proton.tests" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.me.proton:tests:0.1"
  }
}

apply plugin: "me.proton.tests"

Learn how to apply plugins to subprojects