Search Gradle plugins

Version 1.2.0

Created 16 August 2022.

Compile time transformation of dependencies using C-style headers syntax

Using the plugins DSL:

plugins {
  id("io.github.opencubicchunks.javaheaders") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.opencubicchunks:javaheaders:1.2.0")
  }
}

apply(plugin = "io.github.opencubicchunks.javaheaders")

Using the plugins DSL:

plugins {
  id "io.github.opencubicchunks.javaheaders" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.opencubicchunks:javaheaders:1.2.0"
  }
}

apply plugin: "io.github.opencubicchunks.javaheaders"

Learn how to apply plugins to subprojects