Skip to content

Commit 8e2c6d7

Browse files
committed
simplify build.gradle.kts
1 parent dbcd771 commit 8e2c6d7

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

build.gradle.kts

+4-7
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ repositories {
2525
}
2626

2727
dependencies {
28-
implementation(kotlin("stdlib"))
29-
implementation(kotlin("reflect"))
30-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
28+
compileOnly(kotlin("stdlib"))
29+
compileOnly(kotlin("reflect"))
30+
compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
3131

32-
implementation("io.papermc.paper:paper-api:$mcVersion-R0.1-SNAPSHOT")
32+
compileOnly("io.papermc.paper:paper-api:$mcVersion-R0.1-SNAPSHOT")
3333

3434
implementation("org.bstats:bstats-bukkit:1.7")
3535
}
@@ -42,9 +42,6 @@ tasks {
4242
shadowJar {
4343
archiveClassifier = ""
4444
relocate("org.bstats", "com.zp4rker.bukkot.bstats")
45-
dependencies {
46-
include { it.moduleGroup == "org.bstats" }
47-
}
4845
}
4946

5047
processResources {

0 commit comments

Comments
 (0)