mirror of
https://github.com/frosch95/SmartCSV.fx.Converter.git
synced 2026-04-11 05:38:22 +02:00
36 lines
731 B
Groovy
36 lines
731 B
Groovy
buildscript {
|
|
ext.kotlin_version = '1.3.72'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
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'
|