Search Gradle plugins

Version 0.0.1 (latest)

Created 13 June 2022.

A Gradle plugin which extends the existing Gradle Kotlin DSL.

Using the plugins DSL:

plugins {
  id("blue.starry.gradle") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("blue.starry:gradle-extension:0.0.1")
  }
}

apply(plugin = "blue.starry.gradle")

Using the plugins DSL:

plugins {
  id "blue.starry.gradle" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "blue.starry:gradle-extension:0.0.1"
  }
}

apply plugin: "blue.starry.gradle"

Learn how to apply plugins to subprojects