File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
12
12
}
13
13
14
14
group = " com.zp4rker"
15
- version = " 2.1.0 -k2.0.21"
15
+ version = " 2.1.1 -k2.0.21"
16
16
description = " Kotlin meets Bukkit. Kotlin packaged into a plugin, as well as some added features using Kotlin"
17
17
18
18
val mcVersion = " 1.21.1"
@@ -25,9 +25,9 @@ repositories {
25
25
}
26
26
27
27
dependencies {
28
- compileOnly (kotlin(" stdlib" ))
29
- compileOnly (kotlin(" reflect" ))
30
- compileOnly (" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0" )
28
+ api (kotlin(" stdlib" ))
29
+ api (kotlin(" reflect" ))
30
+ api (" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0" )
31
31
32
32
compileOnly(" io.papermc.paper:paper-api:$mcVersion -R0.1-SNAPSHOT" )
33
33
@@ -42,6 +42,9 @@ tasks {
42
42
shadowJar {
43
43
archiveClassifier = " "
44
44
relocate(" org.bstats" , " com.zp4rker.bukkot.bstats" )
45
+ dependencies {
46
+ include { it.moduleGroup == " org.bstats" }
47
+ }
45
48
}
46
49
47
50
processResources {
Original file line number Diff line number Diff line change
1
+ kotlin.stdlib.default.dependency =false
You can’t perform that action at this time.
0 commit comments