-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle.kts
52 lines (39 loc) · 1.2 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
plugins {
`maven-publish`
`java-library`
}
val buildNumber: String? = System.getenv("BUILD_NUMBER")
rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "3.9.0"
subprojects.filter { it.name != "api" }.forEach {
it.project.version = rootProject.version
}
subprojects {
apply(plugin = "maven-publish")
apply(plugin = "java-library")
group = "com.badbones69.crazyvouchers"
description = "Give your players as many rewards as you like in a compact form called a voucher!"
repositories {
maven("https://repo.codemc.io/repository/maven-public")
maven("https://repo.crazycrew.us/libraries")
maven("https://repo.crazycrew.us/releases")
maven("https://jitpack.io")
mavenCentral()
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}
tasks {
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release.set(21)
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
processResources {
filteringCharset = Charsets.UTF_8.name()
}
}
}