-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
36 lines (30 loc) · 851 Bytes
/
build.gradle.kts
File metadata and controls
36 lines (30 loc) · 851 Bytes
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
plugins {
id("java")
id("io.papermc.paperweight.userdev") version "2.0.0-beta.21"
}
group = "de.pascalpex"
version = "2.4"
repositories {
mavenCentral()
maven {
name = "papermc"
url = uri("https://repo.papermc.io/repository/maven-public/")
url = uri("https://repo.extendedclip.com/releases/")
}
}
dependencies {
testImplementation(platform("org.junit:junit-bom:6.0.3"))
testImplementation("org.junit.jupiter:junit-jupiter")
compileOnly("me.clip:placeholderapi:2.12.2")
paperweight.paperDevBundle("26.1.2.build.+")
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(25))
}
tasks.assemble {
dependsOn(tasks.jar)
}
tasks.test {
useJUnitPlatform()
}
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION