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