@@ -60,12 +60,6 @@ Add {+language+} Serialization to Your Project
60
60
Support for serialization in the {+driver-short+} depends on the official `Kotlin
61
61
serialization library <https://github.com/Kotlin/kotlinx.serialization>`__.
62
62
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
-
69
63
Select from the following tabs to see how to add the serialization
70
64
dependencies to your project by using the :guilabel:`Gradle` and
71
65
:guilabel:`Maven` package managers:
@@ -82,7 +76,7 @@ dependencies to your project by using the :guilabel:`Gradle` and
82
76
:caption: build.gradle.kts
83
77
84
78
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:{+serializationVersion+}")
85
- implementation("org.mongodb:bson-kotlinx")
79
+ implementation("org.mongodb:bson-kotlinx:{+full-version+} ")
86
80
87
81
.. tab::
88
82
:tabid: Maven
@@ -101,6 +95,7 @@ dependencies to your project by using the :guilabel:`Gradle` and
101
95
<dependency>
102
96
<groupId>org.mongodb</groupId>
103
97
<artifactId>bson-kotlinx</artifactId>
98
+ <version>{+full-version+}</version>
104
99
</dependency>
105
100
106
101
.. _kotlin-data-class-annotation:
@@ -196,7 +191,7 @@ add the dependency to your project by using the :guilabel:`Gradle` and
196
191
.. code-block:: kotlin
197
192
:caption: build.gradle.kts
198
193
199
- implementation("org.mongodb:bson-kotlinx")
194
+ implementation("org.mongodb:bson-kotlinx:{+full-version+} ")
200
195
201
196
.. tab::
202
197
:tabid: Maven
@@ -210,6 +205,7 @@ add the dependency to your project by using the :guilabel:`Gradle` and
210
205
<dependency>
211
206
<groupId>org.jetbrains.kotlinx</groupId>
212
207
<artifactId>bson-kotlinx</artifactId>
208
+ <version>{+full-version+}</version>
213
209
</dependency>
214
210
215
211
.. note:: bson-kotlin Dependency
0 commit comments