Common framework for srnyx's MongoDB management
- Wiki: github.com/srnyx/magic-mongo/wiki
- Javadocs: javadoc.jitpack.io/xyz/srnyx/magic-mongo/latest/javadoc/index.html
You can import the library using Jitpack. Make sure to replace VERSION
with the version you want. You MUST use implementation
.
- Gradle Kotlin (
build.gradle.kts
):
// Required plugins
plugins {
java
id("com.github.johnrengelman.shadow") version "8.1.1" // https://github.com/johnrengelman/shadow/releases/latest
}
// Jitpack repository
repositories {
maven("https://jitpack.io")
}
// Lazy Library dependency declaration
dependencies {
implementation("xyz.srnyx", "magic-mongo", "VERSION")
}
- Gradle Groovy (
build.gradle
):
// Required plugins
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1' // https://github.com/johnrengelman/shadow/releases/latest
}
// Jitpack repository
repositories {
maven { url = 'https://jitpack.io' }
}
// Lazy Library dependency declaration
dependencies {
implementation 'xyz.srnyx:magic-mongo:VERSION'
}
- Maven (
pom.xml
):- Shade plugin
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <!-- Exclude META-INF to avoid conflicts (not sure if this is needed) --> <configuration> <filters> <filter> <artifact>xyz.srnyx:*</artifact> <excludes> <exclude>META-INF/*.MF</exclude> </excludes> </filter> </filters> </configuration> </plugin> </plugins> </build>
- Jitpack repository
<repositories> <repository> <id>jitpack</id> <url>https://jitpack.io</url> </repository> </repositories>
- Dependency declaration
<dependencies> <dependency> <groupId>xyz.srnyx</groupId> <artifactId>magic-mongo</artifactId> <version>VERSION</version> </dependency> </dependencies>