Skip to content

Commit 364dfb6

Browse files
committed
test1
1 parent b45f316 commit 364dfb6

File tree

3 files changed

+51
-4
lines changed

3 files changed

+51
-4
lines changed

snooty.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ intersphinx = [ "https://www.mongodb.com/docs/manual/objects.inv",
77

88
# toc_landing_pages = ["/paths/to/pages/that/have/nested/content"]
99

10-
# [constants]
11-
# constant = "value"
10+
[constants]
11+
driver-short = "Java RS driver"
12+
driver-long = "MongoDB Java Reactive Streams Driver"
13+
version = "5.0"
14+
full-version = "{+version+}.0"

source/index.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
Java RS Driver
33
==============
44

5-
.. default-domain:: mongodb
5+
.. toctree::
6+
:titlesonly:
7+
:maxdepth: 1
68

7-
Your words here. Don't forget to add a toctree!
9+
/installation
10+
View the Source <https://github.com/mongodb/mongo-java-driver>
811

912
Have a lovely day!

source/installation.txt

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
.. _javars-install:
2+
3+
============
4+
Installation
5+
============
6+
7+
The recommended way to get started using one of the drivers in your
8+
project is with a dependency management system.
9+
10+
The following dependency contains the Reactive Streams implementation
11+
for asynchronous stream processing with non-blocking back pressure.
12+
13+
.. tabs::
14+
15+
.. tab:: Maven
16+
:tabid: maven-installation
17+
18+
If you are using `Maven <https://maven.apache.org/>`__ to manage your
19+
packages, add the following entry to your ``pom.xml`` dependencies list:
20+
21+
.. code-block:: xml
22+
23+
<dependencies>
24+
<dependency>
25+
<groupId>org.mongodb</groupId>
26+
<artifactId>mongodb-driver-reactivestreams</artifactId>
27+
<version>{+full-version+}</version>
28+
</dependency>
29+
</dependencies>
30+
31+
.. tab:: Gradle
32+
:tabid: gradle-installation
33+
34+
If you are using `Gradle <https://gradle.org/>`__ to manage your
35+
packages, add the following entry to your dependencies list:
36+
37+
.. code-block:: java
38+
39+
dependencies {
40+
implementation 'org.mongodb:mongodb-driver-reactivestreams:{+full-version+}'
41+
}

0 commit comments

Comments
 (0)