-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
34 lines (28 loc) · 1 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
plugins {
kotlin("jvm") version "1.7.21"
}
group = "kr.cosine.randombox"
version = "1.0.1"
repositories {
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://maven.hqservice.kr/repository/maven-public/")
}
dependencies {
compileOnly("org.spigotmc", "spigot-api", "1.17.1-R0.1-SNAPSHOT")
compileOnly("kr.hqservice", "hqframework-bukkit-core", "1.0.1-SNAPSHOT")
compileOnly("kr.hqservice", "hqframework-bukkit-command", "1.0.1-SNAPSHOT")
compileOnly("kr.hqservice", "hqframework-bukkit-inventory", "1.0.1-SNAPSHOT")
compileOnly("kr.hqservice", "hqframework-bukkit-nms", "1.0.1-SNAPSHOT")
compileOnly("kr.hqservice", "hqgiftbox-api", "1.0.0")
testImplementation(kotlin("test"))
testImplementation(kotlin("reflect"))
}
tasks {
test {
useJUnitPlatform()
}
jar {
archiveFileName.set("${rootProject.name}-${rootProject.version}.jar")
destinationDirectory.set(file("D:\\서버\\1.20.1 - 개발\\plugins"))
}
}