io.github.opencubicchunks.javaheaders
Owner: Tom Martin
Compile time transformation of dependencies using C-style headers syntax
https://github.com/OpenCubicChunks/javaheaders
Sources: https://github.com/OpenCubicChunks/javaheaders
Version 1.2.8 (latest)
1.2.8
Created 30 December 2023.
Compile time transformation of dependencies using C-style headers syntax
Using the plugins DSL:
plugins {
id("io.github.opencubicchunks.javaheaders") version "1.2.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.opencubicchunks:javaheaders:1.2.8")
}
}
apply(plugin = "io.github.opencubicchunks.javaheaders")
Using the plugins DSL:
plugins {
id "io.github.opencubicchunks.javaheaders" version "1.2.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.opencubicchunks:javaheaders:1.2.8"
}
}
apply plugin: "io.github.opencubicchunks.javaheaders"