-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
48 lines (43 loc) · 1.48 KB
/
build.gradle.kts
File metadata and controls
48 lines (43 loc) · 1.48 KB
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
plugins {
id("java")
id("io.freefair.lombok") version "9.1.0"
id("io.papermc.paperweight.userdev") version "2.0.0-beta.19"
}
group = "com.codedbypritam.deepdivers"
version = "1.0.0"
repositories {
mavenCentral()
maven {
name = "papermc"
url = uri("https://repo.papermc.io/repository/maven-public/")
}
maven("https://maven.enginehub.org/repo/")
maven {
name = "citizens-repo"
url = uri("https://maven.citizensnpcs.co/repo")
}
maven {
url = uri("https://repo.extendedclip.com/releases/")
}
maven(url = "https://mvn.lumine.io/repository/maven-public/")
}
dependencies {
paperweight.paperDevBundle("1.21.8-R0.1-SNAPSHOT")
compileOnly("com.sk89q.worldguard:worldguard-bukkit:7.0.13")
implementation(platform("com.intellectualsites.bom:bom-newest:1.55"))
compileOnly("com.fastasyncworldedit:FastAsyncWorldEdit-Core")
compileOnly("com.fastasyncworldedit:FastAsyncWorldEdit-Bukkit") { isTransitive = false }
compileOnly("net.citizensnpcs:citizens-main:2.0.35-SNAPSHOT") {
exclude(group = "*", module = "*")
}
compileOnly("me.clip:placeholderapi:2.11.7")
compileOnly("com.ticxo.modelengine:ModelEngine:R4.0.4")
compileOnly("io.github.toxicity188:BetterHud-standard-api:1.14.1")
compileOnly("io.github.toxicity188:BetterHud-bukkit-api:1.14.1")
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
tasks.processResources {
expand("version" to version)
}