-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle.kts
68 lines (62 loc) · 1.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
application
alias(libs.plugins.jetbrains.kotlin.jvm)
alias(libs.plugins.johnrengelman.shadow)
id("machine.java-conventions-library")
}
group = "org.machinemc"
version = "1.0-SNAPSHOT"
repositories {
maven {
url = uri("https://jitpack.io")
url = uri("https://libraries.minecraft.net")
}
}
dependencies {
implementation(project(":api"))
implementation(project(":server"))
implementation(project(":application"))
}
application {
mainClass.set("org.machinemc.application.MachineApplication")
}
tasks {
build {
dependsOn(shadowJar)
}
shadowJar {
mergeServiceFiles()
archiveClassifier.set("")
destinationDirectory.set(file("build/libs"))
}
jar {
manifest {
attributes["Main-Class"] = application.mainClass
}
}
distTar {
dependsOn(shadowJar)
}
distZip {
dependsOn(shadowJar)
}
startScripts {
dependsOn(shadowJar)
}
shadowDistTar {
dependsOn(jar)
}
shadowDistZip {
dependsOn(jar)
}
startShadowScripts {
dependsOn(jar)
}
}
tasks.named<JavaExec>("run") {
standardInput = System.`in`
standardOutput = System.out
errorOutput = System.err
args = listOf("smart-terminal")
}