It is listed in the Readme that the location of the snapshot repo is in Sonatype's snapshots repository, however I'm not able to find them there. Where are they supposed to be located?
The link is to the repository which you can add to your build system so that depending on the SNAPSHOT version works.
e.g., for gradle,
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
And as @felipecsl linked, the artifacts are available in there under the path of the groupId, artifactId, and snapshot version.
Most helpful comment
The link is to the repository which you can add to your build system so that depending on the SNAPSHOT version works.
e.g., for gradle,
And as @felipecsl linked, the artifacts are available in there under the path of the groupId, artifactId, and snapshot version.