-
-
Notifications
You must be signed in to change notification settings - Fork 154
/
build.gradle.kts
55 lines (41 loc) · 1.3 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
plugins {
`maven-publish`
`java-library`
}
val buildNumber: String? = System.getenv("BUILD_NUMBER")
rootProject.version = if (buildNumber != null) "${libs.versions.minecraft.get()}-$buildNumber" else "4.3.4"
subprojects.filter { it.name != "api" }.forEach {
it.project.version = rootProject.version
}
subprojects {
apply(plugin = "maven-publish")
apply(plugin = "java-library")
group = "com.badbones69.crazycrates"
description = "Create unlimited crates with multiple crate types to choose from!"
repositories {
maven("https://repo.codemc.io/repository/maven-public")
maven("https://repo.ryderbelserion.com/snapshots")
maven("https://repo.ryderbelserion.com/releases")
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()
}
}
}