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)
Created 11 January 2022.
Starting a Skot Project
Add this plugin to your build using the plugins DSL:
plugins {
id("tech.skot.starter") version "1.1.0"
}
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("tech.skot.starter:tech.skot.starter.gradle.plugin:1.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("tech.skot.starter") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tech.skot.starter:tech.skot.starter.gradle.plugin:1.1.0") } } apply(plugin = "tech.skot.starter")
- Applying plugins to all subprojects .