br.dev.pedrolamarao.metal.commands
Owner: Pedro LamarĂ£o
Contributes a task to aggregate compile_commands.json database
https://github.com/pedrolamarao/gradle-metal
Sources: https://github.com/pedrolamarao/gradle-metal.git
Version 0.4 (latest)
Created 24 November 2023.
Contributes a task to aggregate compile_commands.json database
Add this plugin to your build using the plugins DSL:
plugins {
id("br.dev.pedrolamarao.metal.commands") version "0.4"
}
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("br.dev.pedrolamarao.metal.commands:br.dev.pedrolamarao.metal.commands.gradle.plugin:0.4") }
It can then be applied in the precompiled script plugin:plugins { id("br.dev.pedrolamarao.metal.commands") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("br.dev.pedrolamarao.metal.commands:br.dev.pedrolamarao.metal.commands.gradle.plugin:0.4") } } apply(plugin = "br.dev.pedrolamarao.metal.commands")
- Applying plugins to all subprojects .