We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a29679 commit ed7b18bCopy full SHA for ed7b18b
kt/godot-coroutine-library/build.gradle.kts
@@ -2,7 +2,6 @@ import versioninfo.fullGodotKotlinJvmVersion
2
3
plugins {
4
alias(libs.plugins.kotlin.jvm)
5
- id("com.utopia-rise.api-generator")
6
id("com.utopia-rise.godot-publish")
7
id("com.utopia-rise.versioninfo")
8
alias(libs.plugins.kotlinPreProcessors)
@@ -33,13 +32,9 @@ dependencies {
33
32
}
34
35
tasks {
36
- compileKotlin {
37
- dependsOn(":godot-library:generateAPI")
38
- }
39
-
40
// here so the sourcesJar task has an explicit dependency on the generateApi task. Needed since gradle 8
41
- withType<Jar> {
42
+ getByName("sourcesJar") {
+ dependsOn(":godot-library:sourcesJar")
43
44
45
0 commit comments