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)
0.4
Created 24 November 2023.
Contributes a task to aggregate compile_commands.json database
Using the plugins DSL:
plugins {
id("br.dev.pedrolamarao.metal.commands") version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("br.dev.pedrolamarao.gradle.metal:plugins:0.4")
}
}
apply(plugin = "br.dev.pedrolamarao.metal.commands")
Using the plugins DSL:
plugins {
id "br.dev.pedrolamarao.metal.commands" version "0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "br.dev.pedrolamarao.gradle.metal:plugins:0.4"
}
}
apply plugin: "br.dev.pedrolamarao.metal.commands"