Search Gradle plugins

Version 1.0.4

Created 11 August 2021.

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.4"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects