info.offthecob.Library
Owner: whodevil
This plugin contains all the work from `info.offthecob.Base` but includes `java-library` for building jvm libraries.
https://github.com/whodevil/offthecob-platform
Sources: https://github.com/whodevil/jvm-platform.git
Version 1.0.9
Created 26 August 2023.
This plugin contains all the work from 'info.offthecob.Base' but includes 'java-library' for
building jvm libraries.
Add this plugin to your build using the plugins DSL:
plugins {
id("info.offthecob.Library") version "1.0.9"
}
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.Library:info.offthecob.Library.gradle.plugin:1.0.9") }
It can then be applied in the precompiled script plugin:plugins { id("info.offthecob.Library") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("info.offthecob.Library:info.offthecob.Library.gradle.plugin:1.0.9") } } apply(plugin = "info.offthecob.Library")
- Applying plugins to all subprojects .