Search Gradle plugins

Version 0.4 (latest)

Created 24 November 2023.

Contributes C++ module interface language support to gradle-metal components

Using the plugins DSL:

plugins {
  id("br.dev.pedrolamarao.metal.ixx") 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.ixx")

Using the plugins DSL:

plugins {
  id "br.dev.pedrolamarao.metal.ixx" 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.ixx"

Learn how to apply plugins to subprojects