We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83ce1dd commit 66d467eCopy full SHA for 66d467e
interfaces/build.gradle.kts
@@ -5,10 +5,14 @@ plugins {
5
6
dependencies {
7
compileOnlyApi(libs.adventure.api)
8
- compileOnlyApi(libs.paper.api) {
+ compileOnlyApi(libs.guava)
9
+
10
+ // Paper-api is not marked as api, it is expected that
11
+ // some version of Paper is present in the final plugin!
12
+ // But this may be some fork instead of the regular paper.
13
+ compileOnly(libs.paper.api) {
14
isTransitive = false
15
}
- compileOnlyApi(libs.guava)
16
17
api(libs.kotlin.coroutines)
18
api(libs.slf4j)
0 commit comments