it.smartio.gradle
Owner: Maxwell
Gradle plugin for smart.IO!
Sources: https://github.com/tol-smartio/markdown.git
Version 0.8.4
Created 18 October 2024.
Gradle plugin to build the smart.IO framework!
Add this plugin to your build using the plugins DSL:
plugins {
id("it.smartio.gradle") version "0.8.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("it.smartio.gradle:it.smartio.gradle.gradle.plugin:0.8.4") }
It can then be applied in the precompiled script plugin:plugins { id("it.smartio.gradle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("it.smartio.gradle:it.smartio.gradle.gradle.plugin:0.8.4") } } apply(plugin = "it.smartio.gradle")
- Applying plugins to all subprojects .