-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
46 lines (37 loc) · 1.12 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
java
application
kotlin("jvm") version "1.5.20"
}
group = "graphics.scenery"
version = "0.1.0-SNAPSHOT"
description = "DFTMDVisualizationCASUSOpenDay"
repositories {
maven("https://maven.scijava.org/content/groups/public")
maven("https://nexus.senbox.net/nexus/content/groups/public/")
mavenCentral()
maven("https://jitpack.io")
}
dependencies {
// you can use either Git hashes here to identify a version,
// or version tags from https://github.com/scenerygraphics/scenery/releases
implementation("com.github.RandomDefaultUser:scenery:8d69dd8")
implementation(kotlin("stdlib-jdk8"))
// necessary for logging to work correctly, adjust to the logging
// framework of your liking
runtimeOnly("org.slf4j:slf4j-simple:1.7.30")
}
application {
@Suppress("DEPRECATION")
mainClassName ="graphics.scenery.DFTMDVisualizationCASUSOpenDay"
}
tasks {
withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
sourceCompatibility = "11"
}
named<Test>("test") {
useJUnitPlatform()
}
}