info.offthecob.Settings
Owner: whodevil
* Includes the foojay plugin for gradle 9 support of the toolchain api. * Auto imports sub projects. This also changes gradle to expect sub project's build.gradle.kts to be <sub project name>.gradle.kts. For example: * build.gradle.kts * settings.gradle.kts * my-service/my-service.gradle.kts * my-library/my-library.gradle.kts
https://github.com/whodevil/offthecob-platform
Sources: https://github.com/whodevil/jvm-platform.git
Version 1.0.17 (latest)
Created 11 July 2024.
Add this plugin to your build using the plugins DSL:
plugins {
id("info.offthecob.Settings") version "1.0.17"
}
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("info.offthecob.Settings:info.offthecob.Settings.gradle.plugin:1.0.17") }
It can then be applied in the precompiled script plugin:plugins { id("info.offthecob.Settings") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("info.offthecob.Settings:info.offthecob.Settings.gradle.plugin:1.0.17") } } apply(plugin = "info.offthecob.Settings")
- Applying plugins to all subprojects .