Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop kotlinx.serialization compiler plugin as it's unnecessary #3899

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

whyoleg
Copy link
Collaborator

@whyoleg whyoleg commented Nov 4, 2024

Extracted from #3898, required to be able to update to KGP 2.1.0

@whyoleg whyoleg self-assigned this Nov 4, 2024
@whyoleg whyoleg mentioned this pull request Nov 4, 2024
Comment on lines +48 to +53
fun fromJsonObject(obj: JsonObject): DokkaModuleDescriptionKxs = DokkaModuleDescriptionKxs(
name = obj["name"]!!.jsonPrimitive.content,
modulePath = obj["modulePath"]!!.jsonPrimitive.content,
moduleOutputDirName = obj["moduleOutputDirName"]!!.jsonPrimitive.content,
moduleIncludesDirName = obj["moduleIncludesDirName"]!!.jsonPrimitive.content,
)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be updated, because properties with default constructor arguments are optional.

What do you think about adding some tests? To ensure any code changes don't break things in the future.

@adam-enko adam-enko added the runner: Gradle plugin An issue/PR related to Dokka's Gradle plugin label Nov 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
runner: Gradle plugin An issue/PR related to Dokka's Gradle plugin
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants