tech.skot.starter
Owner: Mathieu Scotet
Starting a Skot Project
https://github.com/skot-framework/skot
Sources: https://github.com/skot-framework/skot/tree/master
Version 1.1.0 (latest)
1.1.0
Created 11 January 2022.
Starting a Skot Project
Using the plugins DSL:
plugins {
id("tech.skot.starter") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tech.skot:plugin:1.1.0")
}
}
apply(plugin = "tech.skot.starter")
Using the plugins DSL:
plugins {
id "tech.skot.starter" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tech.skot:plugin:1.1.0"
}
}
apply plugin: "tech.skot.starter"