-
-
Notifications
You must be signed in to change notification settings - Fork 210
Missing dependencies using https://repo.opencollab.dev/main
#854
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Try adding jitpack as a repo |
didn't work for me |
@andreypfau @FelixTPG any update? |
It somehow worked in the end for me, but i‘ll send my full pom tomorrow when I‘m back at my pc |
This was the only thing that worked for me... |
I use exactly that in readme. Try to reproduce on empty project with current settings: ![]() |
I tried twice. But doesn‘t matter anyways for me. I don‘t use it that often. |
Use the snapshot repository |
That's completely broken as well. The other dependencies can't be found still |
Found something that works! repositories {
mavenCentral()
maven {
url = uri("https://repo.maven.apache.org/maven2/")
}
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/") {
name = "sonatype-oss-snapshots"
}
maven {
url = uri("https://repo.opencollab.dev/maven-releases/")
}
maven {
url = uri("https://repo.opencollab.dev/maven-snapshots/")
}
maven {
url = uri("https://jitpack.io")
}
maven {
url = uri("https://jcenter.bintray.com")
}
} then, in your dependencies {
implementation("org.geysermc.mcprotocollib:protocol:1.21.4-SNAPSHOT")
} The above was for gradle.kts. It should be similar for all of the others. |
You could also use |
@onebeastchris that's literally broken |
Works just fine in Geyser. However, it won't find the latest releases - they've not been properly published to maven-release or maven-snapshots; so you should be (for now) using snapshot versions |
That's odd, because from testing, main does not work and only maven-snapshots seems to work. Something noteworthy is that the directory literally shows up as empty on the website: https://repo.opencollab.dev/#/main |
The text was updated successfully, but these errors were encountered: