io.github.ushiosan23.custom_jfx_plugin
Owner: Brian Alvarez
Create projects with JavaFX with different configurations from the same platform
https://github.com/Ushiosan23/custom-jfx-plugin
Sources: https://github.com/Ushiosan23/custom-jfx-plugin.git
Version 0.2.0 (latest)
0.2.0
Created 15 July 2023.
Create projects with JavaFX with different configurations from the same platform
Using the plugins DSL:
plugins {
id("io.github.ushiosan23.custom_jfx_plugin") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.ushiosan23:custom_jfx_plugin:0.2.0")
}
}
apply(plugin = "io.github.ushiosan23.custom_jfx_plugin")
Using the plugins DSL:
plugins {
id "io.github.ushiosan23.custom_jfx_plugin" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.ushiosan23:custom_jfx_plugin:0.2.0"
}
}
apply plugin: "io.github.ushiosan23.custom_jfx_plugin"