Search Gradle plugins

Version 0.5 (latest)

Created 21 February 2024.

Contributes C language support to a Gradle Metal project

Using the plugins DSL:

plugins {
  id("br.dev.pedrolamarao.metal.c") version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("br.dev.pedrolamarao.gradle.metal:plugins:0.5")
  }
}

apply(plugin = "br.dev.pedrolamarao.metal.c")

Using the plugins DSL:

plugins {
  id "br.dev.pedrolamarao.metal.c" version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "br.dev.pedrolamarao.gradle.metal:plugins:0.5"
  }
}

apply plugin: "br.dev.pedrolamarao.metal.c"

Learn how to apply plugins to subprojects