Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions prison-misc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,14 @@ java {
repositories {

maven {
url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
url = 'https://repo.papermc.io/repository/maven-public/'

// As of Gradle 5.1, you can limit this to only those
// dependencies you expect from it
content {
includeGroup 'org.bukkit'
includeGroup 'org.spigotmc'
includeGroup 'com.destroystokyo.paper'
includeGroup 'io.papermc.paper'
}
}

Expand Down Expand Up @@ -89,7 +90,7 @@ dependencies {
implementation 'org.jetbrains:annotations:24.0.1'


compileOnly 'org.spigotmc:spigot-api:1.13.2-R0.1-SNAPSHOT'
compileOnly 'io.papermc.paper:paper-api:1.21.10-R0.1-SNAPSHOT'


testImplementation group: 'junit', name: 'junit', version: '4.12'
Expand Down
2 changes: 1 addition & 1 deletion prison-spigot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ java {

repositories {

maven { url = "https://hub.spigotmc.org/nexus/content/groups/public" }
maven { url = "https://repo.papermc.io/repository/maven-public/" }


maven {
Expand Down
Loading