update the gradle version and the kotlin version

This commit is contained in:
2020-06-01 22:27:42 +02:00
parent a386abe617
commit 265e3f7f70
2 changed files with 15 additions and 9 deletions

View File

@@ -1,8 +1,5 @@
group 'ninja.javafx'
version '1.1-SNAPSHOT'
buildscript {
ext.kotlin_version = '1.0.4'
ext.kotlin_version = '1.3.72'
repositories {
mavenCentral()
@@ -12,18 +9,27 @@ buildscript {
}
}
apply plugin: 'kotlin'
apply plugin: 'application'
mainClassName = 'ninja.javafx.smartcsv.fx.converter.ConverterFX'
plugins {
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
repositories {
mavenCentral()
jcenter()
}
javafx {
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'com.beust:klaxon:0.24'
compile 'no.tornado:tornadofx:1.5.6'
}
group 'ninja.javafx'
version '1.1-SNAPSHOT'
mainClassName = 'ninja.javafx.smartcsv.fx.converter.ConverterFX'