@@ -60,12 +60,6 @@ Add {+language+} Serialization to Your Project
6060Support for serialization in the {+driver-short+} depends on the official `Kotlin
6161serialization library <https://github.com/Kotlin/kotlinx.serialization>`__.
6262
63- .. sharedinclude:: dbx/jvm/BOM-installation-tip.rst
64-
65- .. replacement:: installation-guide
66-
67- :ref:`Add the Driver Bill of Materials <kotlin-get-started-install-bom>` step of the Quick Start guide.
68-
6963Select from the following tabs to see how to add the serialization
7064dependencies to your project by using the :guilabel:`Gradle` and
7165:guilabel:`Maven` package managers:
@@ -82,7 +76,7 @@ dependencies to your project by using the :guilabel:`Gradle` and
8276 :caption: build.gradle.kts
8377
8478 implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:{+serializationVersion+}")
85- implementation("org.mongodb:bson-kotlinx")
79+ implementation("org.mongodb:bson-kotlinx:{+full-version+} ")
8680
8781 .. tab::
8882 :tabid: Maven
@@ -101,6 +95,7 @@ dependencies to your project by using the :guilabel:`Gradle` and
10195 <dependency>
10296 <groupId>org.mongodb</groupId>
10397 <artifactId>bson-kotlinx</artifactId>
98+ <version>{+full-version+}</version>
10499 </dependency>
105100
106101.. _kotlin-data-class-annotation:
@@ -196,7 +191,7 @@ add the dependency to your project by using the :guilabel:`Gradle` and
196191 .. code-block:: kotlin
197192 :caption: build.gradle.kts
198193
199- implementation("org.mongodb:bson-kotlinx")
194+ implementation("org.mongodb:bson-kotlinx:{+full-version+} ")
200195
201196 .. tab::
202197 :tabid: Maven
@@ -210,6 +205,7 @@ add the dependency to your project by using the :guilabel:`Gradle` and
210205 <dependency>
211206 <groupId>org.jetbrains.kotlinx</groupId>
212207 <artifactId>bson-kotlinx</artifactId>
208+ <version>{+full-version+}</version>
213209 </dependency>
214210
215211.. note:: bson-kotlin Dependency
0 commit comments