Search Gradle plugins

Version 1.0.0 (latest)

Created 04 October 2025.

- Improved caching for Jextract downloads and installations: Jextract is not deleted by gradlew clean which saves bandwidth and privacy. - Custom download locations for Jextract are configurable via specific config file. - The plugin now has a documentation page. - An example project with native binaries as resources has been added. - Tasks were reimplemented to facilitate debugging. - Minor DSL changes for explicit Jextract version configuration that should only affect edge cases - Bug Fixes

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.infolektuell.jextract") version "1.0.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("de.infolektuell.jextract:de.infolektuell.jextract.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("de.infolektuell.jextract")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.infolektuell.jextract:de.infolektuell.jextract.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "de.infolektuell.jextract")
  • Applying plugins to all subprojects .