File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,9 @@ publishing {
23
23
description.set(project.description)
24
24
25
25
developers {
26
- name.set(" Jakob K" )
26
+ developer {
27
+ name.set(" Jakob K" )
28
+ }
27
29
}
28
30
29
31
licenses {
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ plugins {
6
6
description = " Silk Compose Mojang API extracts Minecraft assets from the client jar"
7
7
8
8
dependencies {
9
+ implementation(kotlin(" stdlib" ))
9
10
implementation(" org.slf4j:slf4j-api:1.7.36" )
10
11
implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3" )
11
12
}
Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ val includeTransitive: Configuration by configurations.creating {
14
14
}
15
15
16
16
dependencies {
17
- include(api(project(" :${rootProject.name} -mojang-api" ))!! )
18
17
ksp(project(" :${rootProject.name} -ksp" ))
18
+ include(compileOnly(project(" :${rootProject.name} -mojang-api" ))!! )
19
19
20
20
modApi(" net.silkmc:silk-core:1.9.0" )
21
21
22
- includeTransitive(api (" org.jetbrains.kotlinx:multik-api:0.1.1" )!! )
23
- includeTransitive(api (" org.jetbrains.kotlinx:multik-jvm:0.1.1" )!! )
22
+ includeTransitive(implementation (" org.jetbrains.kotlinx:multik-api:0.1.1" )!! )
23
+ includeTransitive(implementation (" org.jetbrains.kotlinx:multik-jvm:0.1.1" )!! )
24
24
25
- includeTransitive(api (" com.github.ajalt.colormath:colormath:3.2.0" )!! )
25
+ includeTransitive(implementation (" com.github.ajalt.colormath:colormath-jvm :3.2.0" )!! )
26
26
27
27
includeTransitive(api(compose.desktop.common)!! )
28
28
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary ::class )
You can’t perform that action at this time.
0 commit comments