io.github.carnival-data.carnival
Owner: David Birtwell
The Carnival plugin adds the necessary dependencies for an application that relies on Carnival
https://carnival-data.github.io/carnival/
Sources: https://github.com/carnival-data/carnival/
Version 3.0.1 (latest)
Created 17 April 2023.
The Carnival plugin adds the necessary dependencies for an application that relies on Carnival
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.carnival-data.carnival") version "3.0.1"
}
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("io.github.carnival-data.carnival:io.github.carnival-data.carnival.gradle.plugin:3.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.carnival-data.carnival") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.carnival-data.carnival:io.github.carnival-data.carnival.gradle.plugin:3.0.1") } } apply(plugin = "io.github.carnival-data.carnival")
- Applying plugins to all subprojects .