-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle.kts
84 lines (68 loc) · 1.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
plugins {
`java-library`
id("idea")
id("com.gradleup.shadow") version "9.0.0-beta4"
id("io.papermc.paperweight.userdev") version "2.0.0-beta.12" apply false
}
idea {
project.jdkName = "23"
}
allprojects {
group = "cc.dreamcode.template"
version = "1.0-InDEV"
apply(plugin = "java-library")
apply(plugin = "com.gradleup.shadow")
repositories {
/* Libraries */
mavenCentral()
maven("https://repo.dreamcode.cc/releases")
maven("https://storehouse.okaeri.eu/repository/maven-public")
}
}
subprojects {
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
options.compilerArgs.add("-parameters")
}
dependencies {
/* General */
val lombok = "1.18.34"
compileOnly("org.projectlombok:lombok:$lombok")
annotationProcessor("org.projectlombok:lombok:$lombok")
testCompileOnly("org.projectlombok:lombok:$lombok")
testAnnotationProcessor("org.projectlombok:lombok:$lombok")
}
}
project(":plugin-core:nms").subprojects {
val minor = name.split("_").getOrNull(1)?.toInt() ?: 0
val patch = name.split("R").getOrNull(1)?.toInt() ?: 0
if (name == "api" || minor < 17) {
return@subprojects
}
apply(plugin = "io.papermc.paperweight.userdev")
if (minor >= 21 || minor == 20 && patch >= 4) {
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
withSourcesJar()
withJavadocJar()
}
}
else {
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
withSourcesJar()
withJavadocJar()
}
}
}
tasks.register("pluginVersion") {
println(project.version)
}