Blame view

build.gradle 456 Bytes
ca62d17fb   lsagona   create project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  plugins {
      id 'java'
      id 'org.jetbrains.kotlin.jvm' version '1.3.72'
  }
  
  group 'marivisu'
  version '1.0-SNAPSHOT'
  
  repositories {
      mavenCentral()
  }
  
  dependencies {
      implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
52321443a   lsagona   different color f...
15
      implementation 'org.jfxtras:jmetro:8.6.9'
ca62d17fb   lsagona   create project
16
17
      testCompile group: 'junit', name: 'junit', version: '4.12'
  }
ca62d17fb   lsagona   create project
18
19
20
21
22
23
24
  compileKotlin {
      kotlinOptions.jvmTarget = "1.8"
  }
  
  compileTestKotlin {
      kotlinOptions.jvmTarget = "1.8"
  }