No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 385B

12345678910111213141516171819202122
  1. plugins {
  2. id 'application'
  3. id 'org.openjfx.javafxplugin' version '0.0.9'
  4. }
  5. group 'fr.insa.clavardator'
  6. version '1.0-SNAPSHOT'
  7. repositories {
  8. mavenCentral()
  9. }
  10. dependencies {
  11. testCompile group: 'junit', name: 'junit', version: '4.12'
  12. }
  13. javafx {
  14. version = "11.0.2"
  15. modules = [ 'javafx.controls', 'javafx.fxml' ]
  16. }
  17. mainClassName = 'fr.insa.clavardator.MainApp'