itshan

Results 46 comments of itshan

> @hanrw That's actually not caused by SKIE, but a bug in your code. I debugged it and found that the problem is caused by updating the existing data class...

I discovered the issue after introducing Koin(https://github.com/InsertKoinIO/koin) as the dependency injection framework in my project. and found the interface KoinComponent has a default implementation.

yes. you are right. but i have my own code which extends external code like `KoinComponent` for this case is there better solution from your point of view? let's say...

Here you go [build.gradle.kts](https://github.com/tddworks/openai-kotlin/blob/main/build.gradle.kts) ```kotlin kover { reports { filters { excludes { classes( "com.tddworks.**.*\$*$*", // Lambda functions like - LemonSqueezyLicenseApi$activeLicense$activationResult$1 "com.tddworks.**.*\$Companion", // Lambda functions like - LemonSqueezyLicenseApi$activeLicense$activationResult$1 "*.*\$\$serializer", //...

+1 For example when i depends on some project from github. lazy val xxxxx = RootProject(uri("https://github.com/xxxx/xxx.git")) And build with jenkins.(clean test) At the first time jenkins will download the xxxxx...