-
Notifications
You must be signed in to change notification settings - Fork 43
DOCSP-35821: link to jar download #518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
acb2c3f
589a136
92d3584
6a4be19
10353e2
0e48a92
4126872
8af8511
2235cca
cbf5111
9aa5e35
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,12 @@ If you are using `Gradle <https://gradle.org/>`__, add the following to your | |
|
||
.. include:: /includes/quick-start/gradle-versioned.rst | ||
|
||
.. tip:: Download the JAR File | ||
|
||
You can directly download the JAR file for the {+driver-short+} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suggestion: "You can download..." |
||
from the `Maven MongoDB Driver artifact entry | ||
<https://mvnrepository.com/artifact/org.mongodb/mongodb-driver-sync/{+full-version+}>`__. | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suggestion: "You can download the JAR file for the MongoDB Java Driver from the Maven repository." |
||
Once you configure your dependencies, ensure they are available to your | ||
project which may require running your dependency manager and refreshing | ||
the project in your IDE. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Issue/Suggestion:
Could you confirm whether you might need to make the following changes in a technical review?
My guess is that the goal of the ticket is to provide a download location so that the user can download and add them to their app classpath so that they can perform MongoDB operations.
However, I think the mongodb-driver-sync JAR file has these dependencies which means it won't work without them. For context, there used to be another JAR file that contained all the dependencies (called the Uber JAR), but the DBX team no longer provides builds for that.
The current quick start instructions depend on Maven or Gradle to manage all the dependencies of the mongodb-driver-sync JAR.
I think one of the following solutions could improve the usefulness of this info:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll check what DBX and the ticket creator prefer!