Skip to content
 
 

Repository files navigation

Getting started

Using the plugins DSL:

Groovy

plugins {
    id "org.jfxcore.fxmlplugin" version "0.11.0"
}

Kotlin

plugins {
    id("org.jfxcore.fxmlplugin") version "0.11.0"
}

Groovy

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.jfxcore:fxml-gradle-plugin:0.11.0"
  }
}

apply plugin: "org.jfxcore.fxmlplugin"

Kotlin

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.jfxcore:fxml-gradle-plugin:0.11.0")
  }
}

apply(plugin = "org.jfxcore.fxmlplugin")

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages