Search Gradle plugins

Version 0.0.1

Created 15 December 2022.

Gradle plugin for smart.IO!

Using the plugins DSL:

plugins {
  id("it.smartio.gradle") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("it.smartio:plugin:0.0.1")
  }
}

apply(plugin = "it.smartio.gradle")

Using the plugins DSL:

plugins {
  id "it.smartio.gradle" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "it.smartio:plugin:0.0.1"
  }
}

apply plugin: "it.smartio.gradle"

Learn how to apply plugins to subprojects