Wiki has incorrect maven coordinate
alex5nader opened this issue ยท 1 comments
The installation for developers page lists this dependencies block:
dependencies {
// Replace modImplementation with modApi if you expose components in your own API
modImplementation "io.github.onyxstudios:Cardinal-Components-API:<MODULE>:<VERSION>"
// Includes Cardinal Components API as a Jar-in-Jar dependency (optional but recommended)
include "io.github.onyxstudios:Cardinal-Components-API:<MODULE>:<VERSION>"
}
This is incorrect, the first :
in both strings should be a .
:
dependencies {
// Replace modImplementation with modApi if you expose components in your own API
modImplementation "io.github.onyxstudios.Cardinal-Components-API:<MODULE>:<VERSION>"
// Includes Cardinal Components API as a Jar-in-Jar dependency (optional but recommended)
include "io.github.onyxstudios.Cardinal-Components-API:<MODULE>:<VERSION>"
}