I'm a mod developer trying to add compat between my mod and VS. A community member gave me a code snippet to import it as a dependency for Forge 1.20, but I also need the mod for 1.19, 1.18, and 1.16. I can't find any resources online that list the artifacts available for each version. For clarity:
implementation ("org.valkyrienskies.core:api:1.1.0+b19b27c4a4")
implementation ("org.valkyrienskies.core:impl:1.1.0+b19b27c4a4")
implementation ("org.valkyrienskies.core:api-game:1.1.0+b19b27c4a4")
implementation ("org.valkyrienskies.core:util:1.1.0+b19b27c4a4")
implementation fg.deobf("org.valkyrienskies:valkyrienskies-120-forge:2.3.0-beta.5+bcda04a482")
implementation fg.deobf("curse.maven:eureka-ships-654384:5321630")
implementation 'thedarkcolour:kotlinforforge:4.10.0'
These are the artifacts I'm importing for 1.20. I just need a resource that shows me what versions of these artifacts I need for 1.19.2, 1.18, etc.
Apologies if I'm sounding vague. I have a somewhat shallow knowledge of build.gradle.

