-
Notifications
You must be signed in to change notification settings - Fork 0
Add Dependency
Paul edited this page Sep 15, 2023
·
3 revisions
You can use the following snippets to include worm as a dependency directly.
At this point, I want to thank Chojo (@rainbowdashlabs) for letting me use their Sonartype Nexus instance! ❤️
Maven
<repository>
<id>eldonexus</id>
<url>https://eldonexus.de/repository/maven-public/</url>
</repository>
<dependency>
<groupId>de.paul2708</groupId>
<artifactId>worm</artifactId>
<version>0.2.0</version>
</dependency>Gradle
repositories {
maven("https://eldonexus.de/repository/maven-public/")
}
dependencies {
implementation("de.paul2708:worm:0.2.0")
}