de.infolektuell.jextract
Owner: Tamara Cook
Generates Java bindings from native library headers using the Jextract tool
https://github.com/infolektuell/gradle-jextract
Sources: https://github.com/infolektuell/gradle-jextract.git
Version 0.4.0 (latest)
0.4.0
Created 08 November 2024.
Generates Java bindings from native library headers using the Jextract tool
Using the plugins DSL:
plugins {
id("de.infolektuell.jextract") version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.infolektuell:gradle-plugin-jextract:0.4.0")
}
}
apply(plugin = "de.infolektuell.jextract")
Using the plugins DSL:
plugins {
id "de.infolektuell.jextract" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.infolektuell:gradle-plugin-jextract:0.4.0"
}
}
apply plugin: "de.infolektuell.jextract"