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
Copy file name to clipboardExpand all lines: driver-scala/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,22 @@
1
1
# Mongo Scala Driver
2
2
3
-
The `driver-scala` provides provides Scala-idiomatic wrappers for the Mongo Reactive Streams driver.
3
+
The `driver-scala` provides Scala-idiomatic wrappers for the Mongo Reactive Streams driver.
4
4
It currently supports: **Scala 2.11**, **Scala 2.12**, **Scala 2.13**, and **Scala 3**.
5
5
6
6
## Scala Versions
7
7
8
-
Supported Scala versions and their exact version numbers are defined in [`gradle.properties`](gradle.properties):
8
+
Supported Scala versions and their exact version numbers are defined in [`gradle.properties`](../gradle.properties):
9
9
10
10
-`supportedScalaVersions` — the list of supported Scala versions
11
11
-`defaultScalaVersion` — the version used when no `-PscalaVersion` flag is provided (currently `2.13`)
12
12
13
13
## Build Configuration
14
14
15
-
The Scala source set configuration, compiler options, and dependency wiring are all handled in [`buildSrc/src/main/kotlin/project/scala.gradle.kts`](buildSrc/src/main/kotlin/project/scala.gradle.kts).
15
+
The Scala source set configuration, compiler options, and dependency wiring are all handled in [`buildSrc/src/main/kotlin/project/scala.gradle.kts`](../buildSrc/src/main/kotlin/project/scala.gradle.kts).
16
16
17
17
## Library Dependencies
18
18
19
-
Scala library and test dependencies for each version are defined in [`gradle/libs.versions.toml`](gradle/libs.versions.toml). Look for entries prefixed with `scala-` in the `[versions]`, `[libraries]`, and `[bundles]` sections.
19
+
Scala library and test dependencies for each version are defined in [`gradle/libs.versions.toml`](../gradle/libs.versions.toml). Look for entries prefixed with `scala-` in the `[versions]`, `[libraries]`, and `[bundles]` sections.
20
20
21
21
## Directory Layout
22
22
@@ -33,7 +33,7 @@ src/main/
33
33
```
34
34
35
35
Test code also supports the same directory structure.
36
-
The source sets for each Scala version are configured in [`buildSrc/src/main/kotlin/project/scala.gradle.kts`](buildSrc/src/main/kotlin/project/scala.gradle.kts).
36
+
The source sets for each Scala version are configured in [`buildSrc/src/main/kotlin/project/scala.gradle.kts`](../buildSrc/src/main/kotlin/project/scala.gradle.kts).
37
37
When adding new code, place it in the most general directory that applies. Only use a version-specific directory when the code requires syntax or APIs unique to that version.
38
38
39
39
@@ -69,6 +69,6 @@ By default, tests run against Scala 2.13. To test against a specific Scala versi
0 commit comments