Search Gradle plugins

Version 0.0.1 (latest)

Created 15 November 2022.

Java runtime dependency management.

Using the plugins DSL:

plugins {
  id("io.github.portlek.smol-plugin-gradle") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.portlek.smol-plugin-gradle:plugin-gradle:0.0.1")
  }
}

apply(plugin = "io.github.portlek.smol-plugin-gradle")

Using the plugins DSL:

plugins {
  id "io.github.portlek.smol-plugin-gradle" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.portlek.smol-plugin-gradle:plugin-gradle:0.0.1"
  }
}

apply plugin: "io.github.portlek.smol-plugin-gradle"

Learn how to apply plugins to subprojects