Developers
Maven dependency
Consume Dynamic Join Greetings from Modrinth Maven with verified placeholders.
Modrinth can expose published Minecraft projects through its Maven repository. Dynamic Join Greetings does not currently advertise a stable public Java API, and this site does not invent Modrinth coordinates.
If you need to depend on a published version from another project, copy the Project ID and Version ID from the relevant Modrinth version page once the mod is listed there.
For convenience, Dynamic Join Greetings currently uses:
PROJECT_ID:VUafowExVERSION_ID:xKV2Qs2T
Coordinates can change per Modrinth release, so verify the version you want on Modrinth before copying.
Gradle example
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
dependencies {
// For Dynamic Join Greetings, current Modrinth coordinates are:
implementation "maven.modrinth:VUafowEx:xKV2Qs2T"
}Replace:
PROJECT_IDwith the Modrinth project id/slug for Dynamic Join GreetingsVERSION_IDwith the exact Modrinth version id for the release you want
Notes
- Project IDs remain associated with the project across releases.
- Each Modrinth release receives its own Version ID.
- This Maven declaration is for other projects consuming the mod.
- Dynamic Join Greetings should not declare itself as its own dependency.
- The Modrinth Maven API may not provide the same transitive metadata as a creator-operated Maven repository.
- Until a Modrinth listing exists, prefer building from the GitHub source or downloading release artifacts from GitHub Releases.
Found a problem in these docs? Report a documentation issue on GitHub.