io.github.krakowski.jextract
Owner: Filip Krakowski
Integrates jextract with the Gradle build system
https://github.com/krakowski/gradle-jextract
Sources: https://github.com/krakowski/gradle-jextract.git
Version 0.5.0 (latest)
0.5.0
Created 03 April 2024.
Integrates jextract with the Gradle build system
Using the plugins DSL:
plugins {
id("io.github.krakowski.jextract") version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.krakowski:gradle-jextract:0.5.0")
}
}
apply(plugin = "io.github.krakowski.jextract")
Using the plugins DSL:
plugins {
id "io.github.krakowski.jextract" version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.krakowski:gradle-jextract:0.5.0"
}
}
apply plugin: "io.github.krakowski.jextract"