Exit Full View

Goko / build.gradle

// goko (top-leve)

buildscript {
    ext.kotlin_version = '1.4.10'
}

plugins {
    id 'org.jetbrains.kotlin.jvm' version "$kotlin_version"
    id 'org.openjfx.javafxplugin' version '0.0.9'
}

javafx {
    version = "13"
    modules = ['javafx.controls','javafx.media', 'javafx.swing']
}

version = '0.2'
group = 'uk.co.nickthecoder'

apply plugin: 'kotlin'
apply plugin: 'application'
apply plugin: 'maven'

repositories {
    mavenCentral()
    maven {
        // For dependency paratask hosted at gitlab.com
        url "https://gitlab.com/api/v4/projects/9096904/packages/maven"
        name "paratask"
    }

}

dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    compile "uk.co.nickthecoder:paratask-json:0.4"

    testCompile 'junit:junit:4.11'
    testCompile group: 'org.loadui', name: 'testFx', version: '3.1.0'
}

defaultTasks 'installDist'
mainClassName = "uk.co.nickthecoder.goko.GoKo"