Search Gradle plugins

Version 0.8.2 (latest)

Created 07 March 2024.

Gradle plugin to build the smart.IO framework!

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "it.smartio.gradle"

Learn how to apply plugins to subprojects