Skip to content

Commit

Permalink
Microfix #5
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgonmic committed Jan 21, 2025
1 parent 837348d commit 64faf91
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
30 changes: 15 additions & 15 deletions resource-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,21 @@ val composeWasmPropertiesUpdater by tasks.registering(ComposeWasmPropertiesUpdat
propertiesMap.put("server.port", "8081")
propertiesMap.put("skiko.version", libs.versions.skiko.get())

val applicationPropertiesPath = projectDir.resolve("src/main/resources/application.properties")

if (!applicationPropertiesPath.exists()) {
applicationPropertiesPath.createNewFile()
}

propertiesPath.set(applicationPropertiesPath.normalize().absolutePath)

val composeWasmStdlibTypeInfo: FileCollection = kotlinComposeWasmStdlibTypeInfo

typeInfoFile.fileProvider(
provider {
composeWasmStdlibTypeInfo.singleFile
}
)
// val applicationPropertiesPath = projectDir.resolve("src/main/resources/application.properties")
//
// if (!applicationPropertiesPath.exists()) {
// applicationPropertiesPath.createNewFile()
// }
//
// propertiesPath.set(applicationPropertiesPath.normalize().absolutePath)
//
// val composeWasmStdlibTypeInfo: FileCollection = kotlinComposeWasmStdlibTypeInfo
//
// typeInfoFile.fileProvider(
// provider {
// composeWasmStdlibTypeInfo.singleFile
// }
// )
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ include(":indexation")
include(":common")
include(":dependencies")
include(":cache-maker")
//include(":resource-server")
include(":resource-server")

0 comments on commit 64faf91

Please sign in to comment.