Search Gradle plugins

Version 1.0.23 (latest)

1.0.23

Created 19 July 2024.

GluonFX plugin allows to run JavaFX application on the JVM or to create their native images.

Using the plugins DSL:

plugins {
  id("com.gluonhq.gluonfx-gradle-plugin") version "1.0.23"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.gluonhq:gluonfx-gradle-plugin:1.0.23")
  }
}

apply(plugin = "com.gluonhq.gluonfx-gradle-plugin")

Using the plugins DSL:

plugins {
  id "com.gluonhq.gluonfx-gradle-plugin" version "1.0.23"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gluonhq:gluonfx-gradle-plugin:1.0.23"
  }
}

apply plugin: "com.gluonhq.gluonfx-gradle-plugin"

Learn how to apply plugins to subprojects