Skip to content

Commit

Permalink
updated to minecraft 1.20.5
Browse files Browse the repository at this point in the history
  • Loading branch information
NonSwag committed Apr 28, 2024
1 parent 1f434da commit 52b228d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 19 deletions.
11 changes: 6 additions & 5 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,24 @@ plugins {
java {
withSourcesJar()
withJavadocJar()
sourceCompatibility = JavaVersion.VERSION_19
targetCompatibility = JavaVersion.VERSION_19
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

group = rootProject.group
version = rootProject.version
group = "net.thenextlvl.worlds"
version = "1.2.0"

repositories {
mavenCentral()
maven("https://repo.thenextlvl.net/releases")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}

dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
compileOnly("net.thenextlvl.core:annotations:2.0.1")
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.20.5-R0.1-SNAPSHOT")

implementation("net.thenextlvl.core:nbt:1.3.10")
implementation("net.thenextlvl.core:files:1.0.4")
Expand Down
6 changes: 0 additions & 6 deletions build.gradle.kts

This file was deleted.

16 changes: 8 additions & 8 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,30 @@ import net.minecrell.pluginyml.bukkit.BukkitPluginDescription
plugins {
id("java")
id("io.papermc.hangar-publish-plugin") version "0.1.2"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("net.minecrell.plugin-yml.paper") version "0.6.0"
id("io.github.goooler.shadow") version "8.1.7"
}

java {
sourceCompatibility = JavaVersion.VERSION_19
targetCompatibility = JavaVersion.VERSION_19
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

group = rootProject.group
version = "1.1.6"
group = project(":api").group
version = project(":api").version

repositories {
mavenCentral()
maven("https://libraries.minecraft.net")
maven("https://repo.thenextlvl.net/releases")
maven("https://repo.thenextlvl.net/snapshots")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}

dependencies {
compileOnly("org.projectlombok:lombok:1.18.32")
compileOnly("net.thenextlvl.core:annotations:2.0.1")
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
compileOnly("io.papermc.paper:paper-api:1.20.5-R0.1-SNAPSHOT")

implementation("org.bstats:bstats-bukkit:3.0.2")
implementation("org.incendo:cloud-paper:2.0.0-beta.4")
Expand All @@ -54,7 +54,7 @@ tasks.shadowJar {
paper {
name = "Worlds"
main = "net.thenextlvl.worlds.Worlds"
apiVersion = "1.19"
apiVersion = "1.20"
load = BukkitPluginDescription.PluginLoadOrder.POSTWORLD
website = "https://thenextlvl.net"
authors = listOf("NonSwag")
Expand Down

0 comments on commit 52b228d

Please sign in to comment.