EndlessCodeGroup/BukkitGradle

Bungeecord Chat missing for 1.15.2?

TheAifam5 opened this issue · 1 comments

repositories {
    mavenCentral()
    spigot()
    md5()
}
dependencies {
    compileOnly spigotApi()
}
* What went wrong:
Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
   > Could not find net.md-5:bungeecord-chat:1.15-SNAPSHOT.
     Searched in the following locations:
       - file:/home/theaifam5/.m2/repository/net/md-5/bungeecord-chat/1.15-SNAPSHOT/maven-metadata.xml
       - file:/home/theaifam5/.m2/repository/net/md-5/bungeecord-chat/1.15-SNAPSHOT/bungeecord-chat-1.15-SNAPSHOT.pom
       - https://repo.maven.apache.org/maven2/net/md-5/bungeecord-chat/1.15-SNAPSHOT/maven-metadata.xml
       - https://repo.maven.apache.org/maven2/net/md-5/bungeecord-chat/1.15-SNAPSHOT/bungeecord-chat-1.15-SNAPSHOT.pom
       - https://hub.spigotmc.org/nexus/content/repositories/snapshots/net/md-5/bungeecord-chat/1.15-SNAPSHOT/maven-metadata.xml
       - https://hub.spigotmc.org/nexus/content/repositories/snapshots/net/md-5/bungeecord-chat/1.15-SNAPSHOT/bungeecord-chat-1.15-SNAPSHOT.pom
       - http://repo.md-5.net/content/groups/public/net/md-5/bungeecord-chat/1.15-SNAPSHOT/maven-metadata.xml
       - http://repo.md-5.net/content/groups/public/net/md-5/bungeecord-chat/1.15-SNAPSHOT/bungeecord-chat-1.15-SNAPSHOT.pom
     Required by:
         project : > org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT:20200509.094510-108

EDIT:
Based on https://www.spigotmc.org/threads/could-not-find-net-md-5-bungeecord-chat-1-15-snapshot.424976/ it requires maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }

Yes. Just add repo

repositories {
    // ...
    maven { url = 'https://oss.sonatype.org/content/repositories/snapshots' }
}

Also you don't need mavenCentral() It is already applied by BukkitGradle