-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle.kts
55 lines (49 loc) · 1.5 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 {
kotlin("jvm") version "2.0.0"
id("com.github.johnrengelman.shadow") version "8.1.1"
}
group = "dev.mizarc"
version = "0.4.0-dev"
repositories {
mavenCentral()
maven {
url = uri("https://repo.papermc.io/repository/maven-public/")
}
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
maven {
url = uri("https://oss.sonatype.org/content/repositories/central")
}
maven {
url = uri("https://repo.aikar.co/content/groups/aikar/")
}
maven {
url = uri("https://jitpack.io")
}
mavenLocal()
}
dependencies {
testImplementation(kotlin("test"))
testImplementation("io.mockk:mockk:1.13.11")
testImplementation("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
testImplementation("com.github.MilkBowl:VaultAPI:1.7")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
shadow("org.jetbrains.kotlin:kotlin-stdlib")
implementation ("org.slf4j:slf4j-nop:2.0.13")
implementation("com.zaxxer:HikariCP:5.1.0")
implementation("co.aikar:acf-paper:0.5.1-SNAPSHOT")
implementation("co.aikar:idb-core:1.0.0-SNAPSHOT")
implementation("com.github.stefvanschie.inventoryframework:IF:0.10.17")
compileOnly("com.github.MilkBowl:VaultAPI:1.7")
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
tasks.test {
useJUnitPlatform()
}
tasks.shadowJar {
archiveClassifier = null
}