MVN

com.github.boly38 : mongodbdump-java-wrapper

Maven & Gradle

May 11, 2016
4 stars

com.github.boly38:mongodbdump-java-wrapper · A simple java wrapper for mongodb backup commands : mongodump & mongorestore Goal is to provide to any java application, a simple and light way to backup a Mongo database: - backup/restore locally through zip file on the local storage - backup/restore remotely using dropbox.com API - store backup zip file on the cloud : a remote secure dropbox directory

<dependency>
    <groupId>com.github.boly38</groupId>
    <artifactId>mongodbdump-java-wrapper</artifactId>
    <version>1.5</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.boly38 : mongodbdump-java-wrapper to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.5

All Versions

Choose a version of com.github.boly38 : mongodbdump-java-wrapper to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.5
mongodbdump-java-wrapper-1.5
1.4
mongodbdump-java-wrapper-1.4

How to add a dependency to Maven

Add the following com.github.boly38 : mongodbdump-java-wrapper maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.boly38</groupId>
    <artifactId>mongodbdump-java-wrapper</artifactId>
    <version>1.5</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.boly38 : mongodbdump-java-wrapper gradle dependency to your build.gradle file:

implementation 'com.github.boly38:mongodbdump-java-wrapper:1.5'

Gradle Kotlin DSL: Add the following com.github.boly38 : mongodbdump-java-wrapper gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.boly38:mongodbdump-java-wrapper:1.5")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.boly38 : mongodbdump-java-wrapper sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.boly38" % "mongodbdump-java-wrapper" % "1.5"