info.offthecob.Base
Owner: whodevil
This plugin contains a bunch of best practices around how to build projects for the JVM. This includes dependency locking by default, kotlin support, groovy support (for testing), wiring up the junit platform, null away, and linting.
https://github.com/whodevil/offthecob-platform
Sources: https://github.com/whodevil/jvm-platform.git
Version 1.0.13
Created 10 September 2023.
Add this plugin to your build using the plugins DSL:
plugins {
id("info.offthecob.Base") version "1.0.13"
}
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.Base:info.offthecob.Base.gradle.plugin:1.0.13") }
It can then be applied in the precompiled script plugin:plugins { id("info.offthecob.Base") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("info.offthecob.Base:info.offthecob.Base.gradle.plugin:1.0.13") } } apply(plugin = "info.offthecob.Base")
- Applying plugins to all subprojects .