You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
kotlinx-datetime:core uses transitive static when expressing kotlinx.serialization.core in its module-info.java. This results in a compilation error for library consumers who do not have kotlinx.serialization.core as a dependency, but are also supporting JPMS.
> Task :{project-name}:compileKotlinJvm FAILED
e: Module kotlinx.serialization.core cannot be found in the module graph
I believe dropping the key word transitive (because kotlinx.serialization.core is not defined in kotlinx-datetime:core as an api dependency) would fix the issue.
The text was updated successfully, but these errors were encountered:
kotlinx-datetime:core
usestransitive static
when expressingkotlinx.serialization.core
in itsmodule-info.java
. This results in a compilation error for library consumers who do not havekotlinx.serialization.core
as a dependency, but are also supporting JPMS.I believe dropping the key word
transitive
(becausekotlinx.serialization.core
is not defined inkotlinx-datetime:core
as anapi
dependency) would fix the issue.The text was updated successfully, but these errors were encountered: