it.smartio.fastcc
Owner: Maxwell
Gradle plugin to use the FastCC generator!
Sources: https://github.com/tol-smartio/markdown.git
Version 0.1.0 (latest)
0.1.0
Created 22 February 2024.
Gradle plugin to use the FastCC generator!
Using the plugins DSL:
plugins {
id("it.smartio.fastcc") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("it.smartio:fastcc:0.1.0")
}
}
apply(plugin = "it.smartio.fastcc")
Using the plugins DSL:
plugins {
id "it.smartio.fastcc" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "it.smartio:fastcc:0.1.0"
}
}
apply plugin: "it.smartio.fastcc"