Blame view

build.gradle 784 Bytes
ca62d17fb   lsagona   create project
1
2
3
4
5
6
7
8
9
10
  plugins {
      id 'java'
      id 'org.jetbrains.kotlin.jvm' version '1.3.72'
  }
  
  group 'marivisu'
  version '1.0-SNAPSHOT'
  
  repositories {
      mavenCentral()
f15a58907   lsagona   add better chart
11
12
13
      maven {
          url "https://jitpack.io"
      }
ca62d17fb   lsagona   create project
14
15
16
17
  }
  
  dependencies {
      implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
52321443a   lsagona   different color f...
18
      implementation 'org.jfxtras:jmetro:8.6.9'
79b001037   lsagona   heat map
19
      implementation 'org.slf4j:slf4j-api:1.7.30'
ca62d17fb   lsagona   create project
20
      testCompile group: 'junit', name: 'junit', version: '4.12'
79b001037   lsagona   heat map
21
22
      testCompile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
      compile group: 'ch.qos.logback', name: 'logback-core', version: '1.2.3'
f15a58907   lsagona   add better chart
23
      compile 'com.github.jasrodis:javafx-dataviewer-wrapper:-SNAPSHOT'
ca62d17fb   lsagona   create project
24
  }
ca62d17fb   lsagona   create project
25
26
27
28
29
30
31
  compileKotlin {
      kotlinOptions.jvmTarget = "1.8"
  }
  
  compileTestKotlin {
      kotlinOptions.jvmTarget = "1.8"
  }