Search Gradle plugins

it.smartio.build

Owner: Maxwell

Glade plugin to build the smart.IO environment

https://www.tol.info

Sources: https://github.com/tol-smartio/markdown.git

Using the plugins DSL:

plugins {
  id("it.smartio.build") version "0.7.9"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "it.smartio.build" version "0.7.9"
}

Using legacy plugin application:

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

apply plugin: "it.smartio.build"

Learn how to apply plugins to subprojects