-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
134 lines (108 loc) · 2.67 KB
/
build.gradle
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import org.gradle.internal.os.OperatingSystem
plugins {
id "application"
id "idea"
id "org.jetbrains.kotlin.jvm" version "1.3.50"
}
switch (OperatingSystem.current()) {
case OperatingSystem.LINUX:
project.ext.lwjgl_natives = "natives-linux"
break
case OperatingSystem.WINDOWS:
project.ext.lwjgl_natives = "natives-windows"
break
}
group "de.orchound.rendering"
version "1.0-SNAPSHOT"
println """
|- $project.title -
|$description
|
|Group: $group
|Version: $version
|Vendor: $project.vendor
|
|Gradle version: $gradle.gradleVersion
|Gradle home: $gradle.gradleHomeDir
|Gradle user directory: $gradle.gradleUserHomeDir
|Running script: ${relativePath(buildFile)}
""".stripMargin()
mainClassName = project.main_class
// -------------------------------------------------------------
// --- Repositories and Dependencies ---------------------------
// -------------------------------------------------------------
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile(
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1",
"io.github.microutils:kotlin-logging:1.7.6",
"org.slf4j:slf4j-simple:2.0.0-alpha0",
"org.joml:joml:$joml_version",
)
// LWJGL dependencies <https://www.lwjgl.org/customize>
implementation platform("org.lwjgl:lwjgl-bom:$lwjgl_version")
compile(
"org.lwjgl:lwjgl",
"org.lwjgl:lwjgl-glfw",
"org.lwjgl:lwjgl-opengl",
"org.lwjgl:lwjgl-stb",
)
runtimeOnly(
"org.lwjgl:lwjgl::$lwjgl_natives",
"org.lwjgl:lwjgl-glfw::$lwjgl_natives",
"org.lwjgl:lwjgl-opengl::$lwjgl_natives",
"org.lwjgl:lwjgl-stb::$lwjgl_natives",
)
testCompile(
"io.kotlintest:kotlintest-runner-junit5:3.4.2",
"org.junit.jupiter:junit-jupiter-api:$junit_jupiter_version",
)
}
// -------------------------------------------------------------
// --- Tasks ---------------------------------------------------
// -------------------------------------------------------------
test {
useJUnitPlatform {}
}
jar {
manifest {
attributes "Main-Class": project.main_class
}
}
task fatJar(type: Jar) {
setArchivesBaseName("$project.name-fat")
manifest {
attributes "Main-Class": project.main_class
}
from {
configurations.runtimeClasspath.collect {
it.isDirectory() ? it : zipTree(it)
}
}
with jar
configure {
group = "build"
description = "Create an executable jar."
}
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
wrapper {
gradleVersion = "5.6.2"
distributionType = Wrapper.DistributionType.ALL
}
idea {
module {
jdkName = "1.8"
downloadJavadoc = true
downloadSources = true
iml {}
}
}