Skip to content

Commit 7ff1585

Browse files
committed
DOCSP-49013-removed versions from mongodb-crypt and all kotlin(x) implementations managed by BOM
1 parent 4195a9b commit 7ff1585

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

source/fundamentals/data-formats/serialization.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ dependency to your project by using the :guilabel:`Gradle` and
367367
<dependency>
368368
<groupId>org.jetbrains.kotlinx</groupId>
369369
<artifactId>kotlinx-datetime-jvm</artifactId>
370+
<version>{+kotlinx-dt-version+}</version>
370371
</dependency>
371372

372373
To learn more about this library, see the :github:`kotlinx-datetime repository

source/fundamentals/encrypt-fields.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,9 @@
2626
:tabid: gradle-dependency
2727

2828
.. include:: /includes/fundamentals/code-snippets/crypt-gradle-versioned.rst
29+
30+
.. sharedinclude:: dbx/jvm/BOM-installation-tip.rst
31+
32+
.. replacement:: installation-guide
33+
34+
:ref:`Add the Driver Bill of Materials <kotlin-get-started-install-bom>` step of the Quick Start guide.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.. code-block:: kotlin
22
33
dependencies {
4-
implementation("org.mongodb:bson:{+full-version+}")
4+
implementation("org.mongodb:bson")
55
}
66
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.. code-block:: groovy
22
33
dependencies {
4-
implementation("org.mongodb:mongodb-crypt:{+mongocrypt-version+}")
4+
implementation("org.mongodb:mongodb-crypt")
55
}

source/includes/fundamentals/code-snippets/crypt-maven-versioned.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44
<dependency>
55
<groupId>org.mongodb</groupId>
66
<artifactId>mongodb-crypt</artifactId>
7-
<version>{+mongocrypt-version+}</version>
87
</dependency>
98
</dependencies>

source/includes/serialization-libs-gradle-versioned.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:caption: build.gradle.kts
33
:copyable: true
44
5-
implementation("org.mongodb:bson-kotlinx:{+full-version+}")
5+
implementation("org.mongodb:bson-kotlinx")
66
// OR
7-
implementation("org.mongodb:bson-kotlin:{+full-version+}")
7+
implementation("org.mongodb:bson-kotlin")
88

source/includes/serialization-libs-maven-versioned.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@
55
<dependency>
66
<groupId>org.mongodb</groupId>
77
<artifactId>bson-kotlinx</artifactId>
8-
<version>{+full-version+}</version>
98
</dependency>
109
<!--OR-->
1110
<dependency>
1211
<groupId>org.mongodb</groupId>
1312
<artifactId>bson-kotlin</artifactId>
14-
<version>{+full-version+}</version>
1513
</dependency>
1614

0 commit comments

Comments
 (0)