-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
60 lines (51 loc) · 1.24 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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm")
`maven-publish`
id("dev.fastmc.maven-repo").version("1.0.0")
}
group = "dev.fastmc"
version = "1.0.0"
repositories {
mavenCentral()
}
dependencies {
compileOnly("it.unimi.dsi:fastutil:7.1.0")
implementation(kotlin("reflect"))
api("org.ow2.asm:asm-commons:9.4")
api("org.ow2.asm:asm-tree:9.4")
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
withSourcesJar()
}
kotlin {
val jvmArgs = mutableSetOf<String>()
(rootProject.findProperty("kotlin.daemon.jvm.options") as? String)
?.split("\\s+".toRegex())?.toCollection(jvmArgs)
System.getProperty("gradle.kotlin.daemon.jvm.options")
?.split("\\s+".toRegex())?.toCollection(jvmArgs)
kotlinDaemonJvmArgs = jvmArgs.toList()
}
tasks {
withType<JavaCompile> {
options.encoding = "UTF-8"
}
withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs += listOf(
"-Xbackend-threads=0"
)
}
}
}
publishing {
publications {
create<MavenPublication>(rootProject.name) {
from(components["java"])
}
}
}