Commit 2ac38153f5b4a38865146fa1117b3827d23abc4e

Authored by lsagona
1 parent d1771550d3
Exists in master and in 1 other branch dev

implement gradle run

Showing 1 changed file with 5 additions and 0 deletions Side-by-side Diff

build.gradle View file @ 2ac3815
... ... @@ -23,6 +23,11 @@
23 23 compile 'com.github.jasrodis:javafx-dataviewer-wrapper:-SNAPSHOT'
24 24 }
25 25  
  26 +task run(type: JavaExec) {
  27 + main = 'application.App'
  28 + classpath = sourceSets.main.runtimeClasspath
  29 +}
  30 +
26 31 compileKotlin {
27 32 kotlinOptions.jvmTarget = "1.8"
28 33 }