-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Ancient edited this page Apr 15, 2026
·
5 revisions
PulseLib is lightweight and easy to install — requiring only a few changes to your build.gradle file.
Currently, the project does not have its own hosting, so you can use CurseMaven or Modrinth as your dependency source, but I highly recommend using Modrinth.
Add the repository and dependency:
repositories {
maven {
name = 'CurseMaven'
url "https://beta.cursemaven.com"
}
}
dependencies {
// Example: minecraft: 1.21.1, pulselib: 1.0.7
// Visit https://www.curseforge.com/minecraft/mc-mods/pulselib/files/all to get the latest version
implementation "curse.maven:pulselib-${minecraft_version}-${pulselib_version}"
}Add the repository and dependency:
repositories {
maven {
url = "https://api.modrinth.com/maven"
}
}
dependencies {
// Example: minecraft: 1.21.1, pulselib: 1.0.7
// Visit https://modrinth.com/mod/pulselib/versions to get the latest version
implementation "maven.modrinth:pulselib:${minecraft_version}-${pulselib_version}"
}Final Step
After adding the repository and dependency, refresh Gradle, and PulseLib will be ready to use in your project!
Start
Basics
In depth
Specifics