Search Gradle plugins

Version 0.4 (latest)

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"

Learn how to apply plugins to subprojects