Search Gradle plugins

Run JavaFX/TestFX tests on headless CI (Jenkins, GitHub Actions) with OpenJDK 8 — bundles required Monocle config and OpenJFX native libraries so no Zulu FX JDK is needed on the agent.

https://github.com/sebastian-king/javafx-ci-headless-testfx

Sources: https://github.com/sebastian-king/javafx-ci-headless-testfx.git

Version 0.1.0 (latest)

Created 07 April 2026.

Run JavaFX/TestFX tests on headless CI (Jenkins, GitHub Actions) with OpenJDK 8 — bundles required Monocle config and OpenJFX native libraries so no Zulu FX JDK is needed on the agent.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.sebastian-king.javafx-ci-headless-testfx") version "0.1.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("io.github.sebastian-king.javafx-ci-headless-testfx:io.github.sebastian-king.javafx-ci-headless-testfx.gradle.plugin:0.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.sebastian-king.javafx-ci-headless-testfx")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.sebastian-king.javafx-ci-headless-testfx:io.github.sebastian-king.javafx-ci-headless-testfx.gradle.plugin:0.1.0")
      }
    }
    
    apply(plugin = "io.github.sebastian-king.javafx-ci-headless-testfx")
  • Applying plugins to all subprojects .