Skip to content

Commit

Permalink
chore: lower java version
Browse files Browse the repository at this point in the history
  • Loading branch information
ybw0014 committed Jan 17, 2025
1 parent c935974 commit e2372c2
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,27 @@ plugins {

repositories {
mavenCentral()
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven("https://s01.oss.sonatype.org/content/groups/public/")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://jitpack.io")
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
}

dependencies {
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
compileOnly("com.github.Slimefun:Slimefun4:e02a0f61d1")
compileOnly("io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT")
compileOnly("com.github.Slimefun:Slimefun4:a1a2abbc47")
compileOnly("me.clip:placeholderapi:2.11.6")
implementation("org.bstats:bstats-bukkit:3.0.3")
implementation("org.bstats:bstats-bukkit:3.1.0")
implementation("com.google.code.findbugs:jsr305:3.0.2")
implementation("net.guizhanss:guizhanlib-all:2.0.0-SNAPSHOT")
implementation("net.guizhanss:guizhanlib-all:2.2.0")
}

group = "io.github.thebusybiscuit"
version = "UNOFFICIAL"

java {
sourceCompatibility = JavaVersion.VERSION_21
disableAutoTargetJvm()
sourceCompatibility = JavaVersion.VERSION_17
}

publishing {
Expand Down

0 comments on commit e2372c2

Please sign in to comment.