@@ -5,37 +5,42 @@ plugins {
55
66catalog {
77 versionCatalog {
8- // https://launchermeta.mojang.com/mc/game/version_manifest_v2.json
8+ // See: https://launchermeta.mojang.com/mc/game/version_manifest_v2.json
99 val slf4j = version(" slf4j" , " 2.0.9" )
1010 library(" slf4j-api" , " org.slf4j" , " slf4j-api" ).versionRef(slf4j)
1111 library(" slf4j-impl" , " org.slf4j" , " slf4j-simple" ).versionRef(slf4j)
1212
13+ // See: https://mvnrepository.com/artifact/org.apiguardian/apiguardian-api
1314 val apiGuardian = version(" apiGuardian" , " 1.1.2" )
1415 library(" apiguardian" , " org.apiguardian" , " apiguardian-api" ).versionRef(apiGuardian)
1516
16- val junit5 = version(" junit5" , " 5.11.3" )
17+ // See: https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
18+ val junit5 = version(" junit5" , " 5.11.4" )
1719 library(" junit-api" , " org.junit.jupiter" , " junit-jupiter-api" ).versionRef(junit5)
1820 library(" junit-engine" , " org.junit.jupiter" , " junit-jupiter-engine" ).versionRef(junit5)
1921 library(" junit-params" , " org.junit.jupiter" , " junit-jupiter-params" ).versionRef(junit5)
2022
21- val assertJ = version(" assertJ" , " 3.26.3" )
23+ // See: https://mvnrepository.com/artifact/org.assertj/assertj-core
24+ val assertJ = version(" assertJ" , " 3.27.3" )
2225 library(" assertj" , " org.assertj" , " assertj-core" ).versionRef(assertJ)
2326
24- val mockito = version(" mockito" , " 5.14.2" )
27+ // See: https://mvnrepository.com/artifact/org.mockito/mockito-core
28+ val mockito = version(" mockito" , " 5.15.2" )
2529 library(" mockito" , " org.mockito" , " mockito-core" ).versionRef(mockito)
2630
27- val equalsVerifier = version(" equalsverifier" , " 3.17.3" )
31+ // See: https://mvnrepository.com/artifact/nl.jqno.equalsverifier/equalsverifier
32+ val equalsVerifier = version(" equalsverifier" , " 3.18.1" )
2833 library(" equalsverifier" , " nl.jqno.equalsverifier" , " equalsverifier" ).versionRef(equalsVerifier)
2934
30- // https://www.curseforge.com/minecraft/mc-mods/cloth-config/files
35+ // See: https://www.curseforge.com/minecraft/mc-mods/cloth-config/files
3136 val clothConfig = version(" cloth-config-fabric" , " 15.0.140" )
3237 library(" cloth-config" , " me.shedaniel.cloth" , " cloth-config-fabric" ).versionRef(clothConfig)
3338
34- // https://github.com/TechReborn/Energy (https://maven.fabricmc.net/teamreborn/energy/)
39+ // See: https://github.com/TechReborn/Energy (https://maven.fabricmc.net/teamreborn/energy/)
3540 val energy = version(" teamreborn-energy" , " 4.1.0" )
3641 library(" teamreborn-energy" , " teamreborn" , " energy" ).versionRef(energy)
3742
38- // https://modrinth.com/mod/modmenu
43+ // See: https://modrinth.com/mod/modmenu
3944 val modmenu = version(" modmenu" , " 11.0.3" )
4045 library(" modmenu" , " com.terraformersmc" , " modmenu" ).versionRef(modmenu)
4146 }
0 commit comments