org.ysb33r.ysf-project.core
Owner: Schalk Cronjé
This forms the core plugin of all YSF projects
https://ysf-project-plugins-ysb33rorg-org-807ecfcf56dadd76244b4af64464a.gitlab.io
Sources: https://gitlab.com/ysb33rOrg/ysf-project-plugins.git
Version 0.0.7
Created 30 October 2024.
This forms the core plugin of all YSF projects
Add this plugin to your build using the plugins DSL:
plugins {
id("org.ysb33r.ysf-project.core") version "0.0.7"
}
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("org.ysb33r.ysf-project.core:org.ysb33r.ysf-project.core.gradle.plugin:0.0.7") }
It can then be applied in the precompiled script plugin:plugins { id("org.ysb33r.ysf-project.core") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.ysb33r.ysf-project.core:org.ysb33r.ysf-project.core.gradle.plugin:0.0.7") } } apply(plugin = "org.ysb33r.ysf-project.core")
- Applying plugins to all subprojects .