Search Gradle plugins

Version 0.0.75-SNAPSHOT (latest)

0.0.75-SNAPSHOT

Created 30 August 2020.

This will not work unless you have access to the necessary github repos

Using the plugins DSL:

plugins {
  id("net.sneak.commons.crirge-gradle") version "0.0.75-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.sneak.commons:crirgeGradlePlugin:0.0.75-SNAPSHOT")
  }
}

apply(plugin = "net.sneak.commons.crirge-gradle")

Using the plugins DSL:

plugins {
  id "net.sneak.commons.crirge-gradle" version "0.0.75-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.sneak.commons:crirgeGradlePlugin:0.0.75-SNAPSHOT"
  }
}

apply plugin: "net.sneak.commons.crirge-gradle"

Learn how to apply plugins to subprojects