-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
45 lines (39 loc) · 1.21 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
plugins {
kotlin("jvm") version "1.7.21"
}
group = "kr.cosine.discordauth"
version = "1.2.1"
repositories {
maven("https://maven.hqservice.kr/repository/maven-public")
mavenLocal()
}
dependencies {
compileOnly("org.spigotmc", "spigot-api", "1.17.1-R0.1-SNAPSHOT")
compileOnly("kr.cosine.discordapi", "HQDiscordAPI", "1.0.0")
compileOnly("kr.hqservice", "hqframework-bukkit-core", "1.0.2-SNAPSHOT") {
exclude("org.spigotmc")
exclude("io.papermc.paper")
}
compileOnly("kr.hqservice", "hqframework-bukkit-command", "1.0.2-SNAPSHOT") {
exclude("org.spigotmc")
exclude("io.papermc.paper")
}
compileOnly("kr.hqservice", "hqframework-bukkit-inventory", "1.0.2-SNAPSHOT") {
exclude("org.spigotmc")
exclude("io.papermc.paper")
}
compileOnly("kr.hqservice", "hqframework-bukkit-nms", "1.0.2-SNAPSHOT") {
exclude("org.spigotmc")
exclude("io.papermc.paper")
}
testImplementation(kotlin("test"))
}
tasks {
test {
useJUnitPlatform()
}
jar {
archiveFileName.set("${rootProject.name}-${rootProject.version}.jar")
destinationDirectory.set(file("D:\\서버\\1.20.1 - 개발\\plugins"))
}
}