Search Gradle plugins

Version 0.1.0-archeo-86f61f0 (latest)

Created 02 November 2022.

Example plugin for the LSS course

Using the plugins DSL:

plugins {
  id("org.danilopianini.lss2022.helloplugin") version "0.1.0-archeo-86f61f0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.danilopianini:lss2022.helloplugin:0.1.0-archeo-86f61f0")
  }
}

apply(plugin = "org.danilopianini.lss2022.helloplugin")

Using the plugins DSL:

plugins {
  id "org.danilopianini.lss2022.helloplugin" version "0.1.0-archeo-86f61f0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.danilopianini:lss2022.helloplugin:0.1.0-archeo-86f61f0"
  }
}

apply plugin: "org.danilopianini.lss2022.helloplugin"

Learn how to apply plugins to subprojects