it.smartio.build
Owner: Maxwell
Glade plugin to build the smart.IO environment
Sources: https://github.com/tol-smartio/markdown.git
Version 0.7.26 (latest)
0.7.26
Created 03 May 2023.
Gradle plugin to build the smart.IO framework!
Using the plugins DSL:
plugins {
id("it.smartio.build") version "0.7.26"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("it.smartio:plugin:0.7.26")
}
}
apply(plugin = "it.smartio.build")
Using the plugins DSL:
plugins {
id "it.smartio.build" version "0.7.26"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "it.smartio:plugin:0.7.26"
}
}
apply plugin: "it.smartio.build"