Skip to content

Commit 31300eb

Browse files
committed
chore: disable graalvm as it conflict with openapi plugin
1 parent b979587 commit 31300eb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

backend/jvm/build.gradle.kts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ plugins {
99
application
1010
id("com.google.cloud.tools.jib")
1111
id("gg.jte.gradle")
12-
id("dev.suresh.plugin.graalvm")
1312
id("com.gradleup.shadow")
1413
alias(libs.plugins.jetbrains.ktor)
1514
alias(libs.plugins.exoquery)
1615
id("dev.suresh.plugin.publishing")
16+
// id("dev.suresh.plugin.graalvm")
1717
// alias(libs.plugins.jetbrains.exposed)
1818
}
1919

@@ -31,7 +31,6 @@ ktor {
3131
version = project.version.toString()
3232
summary = project.description
3333
description = project.description
34-
target = project.layout.buildDirectory.file("open-api.json")
3534
}
3635

3736
fatJar { archiveFileName = "${project.name}-all.jar" }
@@ -131,6 +130,7 @@ tasks {
131130
processResources {
132131
duplicatesStrategy = DuplicatesStrategy.INCLUDE
133132
dependsOn(copyTasks)
133+
// dependsOn(copyTasks, "buildOpenApi")
134134
}
135135

136136
// Makes sure jte is generated before compilation
@@ -236,6 +236,9 @@ dependencies {
236236
testImplementation(libs.kubernetes.client)
237237
testImplementation(libs.konsist)
238238

239+
// YAML Config
240+
// implementation(libs.ktor.server.config.yaml)
241+
239242
// Copy js, wasm, compose apps
240243
findProject(":web")?.let {
241244
jsApp(project(path = it.path, configuration = "jsApp"))

0 commit comments

Comments
 (0)