com.gluonhq.client-gradle-plugin
Owner: Gluon Bot
Plugin that simplifies using Gluon Client for JavaFX projects
https://github.com/gluonhq/client-gradle-plugin
Sources: https://github.com/gluonhq/client-gradle-plugin
Version 0.1.42 (latest)
0.1.42
Created 03 June 2021.
Plugin that simplifies using Gluon Client for JavaFX projects
Using the plugins DSL:
plugins {
id("com.gluonhq.client-gradle-plugin") version "0.1.42"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gluonhq:client-gradle-plugin:0.1.42")
}
}
apply(plugin = "com.gluonhq.client-gradle-plugin")
Using the plugins DSL:
plugins {
id "com.gluonhq.client-gradle-plugin" version "0.1.42"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gluonhq:client-gradle-plugin:0.1.42"
}
}
apply plugin: "com.gluonhq.client-gradle-plugin"