-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
41 lines (34 loc) · 1.04 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
plugins {
kotlin("jvm") version "1.9.22"
id("java")
}
group = "io.github.bindglam"
version = "unspecified"
repositories {
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://repo.oraxen.com/releases")
maven("https://jitpack.io")
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
maven("https://repo.dmulloy2.net/repository/public/")
maven("https://repo.codemc.io/repository/maven-releases/")
mavenLocal()
}
dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test")
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
compileOnly("org.spigotmc:spigot:1.21-R0.1-SNAPSHOT")
compileOnly("io.th0rgal:oraxen:1.178.0")
compileOnly("com.github.LoneDev6:API-ItemsAdder:3.6.3-beta-14")
compileOnly("me.clip:placeholderapi:2.11.6")
implementation(files("libs/ProtocolLib.jar"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}