diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..3e4a382ed --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "gradle" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 8df8568ea..730da0768 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -39,7 +39,7 @@ junit = "4.12" guava = "31.1-jre" spigotApi = "1.13.2-R0.1-SNAPSHOT" -nbtApi = "2.14.1" +nbtApi = "2.15.1" papi = "2.11.6" vault = "1.7.1" diff --git a/prison-misc/build.gradle b/prison-misc/build.gradle index af3456755..e117a7a4f 100644 --- a/prison-misc/build.gradle +++ b/prison-misc/build.gradle @@ -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' } } @@ -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' diff --git a/prison-spigot/build.gradle b/prison-spigot/build.gradle index b77687e21..04ac36edd 100644 --- a/prison-spigot/build.gradle +++ b/prison-spigot/build.gradle @@ -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 {