-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
32 lines (24 loc) · 912 Bytes
/
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
plugins {
kotlin("jvm")
}
allprojects {
version = "0.0.1"
apply(plugin = "kotlin")
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
afterEvaluate {
dependencies {
implementation(kotlin("reflect"))
implementation(platform(kotlin("bom")))
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:${project.extra["kotlinVersion"]}")
implementation("ch.qos.logback:logback-classic:1.4.11")
implementation("org.reflections:reflections:0.10.2")
implementation("dev.romainguy:kotlin-math:1.5.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3")
compileOnly("org.lwjgl:lwjgl-glfw:${project.extra["lwjglVersion"]}")
}
}
}