mirror of
https://github.com/frosch95/SmartCSV.fx.Converter.git
synced 2026-04-11 13:48:22 +02:00
29 lines
534 B
Groovy
29 lines
534 B
Groovy
|
|
group 'ninja.javafx'
|
||
|
|
version '1.0-SNAPSHOT'
|
||
|
|
|
||
|
|
buildscript {
|
||
|
|
ext.kotlin_version = '1.0.4'
|
||
|
|
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
dependencies {
|
||
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
apply plugin: 'kotlin'
|
||
|
|
apply plugin: 'application'
|
||
|
|
|
||
|
|
mainClassName = 'ninja.javafx.smartcsv.fx.converter.ConverterKt'
|
||
|
|
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
jcenter()
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||
|
|
compile 'com.beust:klaxon:0.24'
|
||
|
|
}
|