Skip to content

Commit

Permalink
Added support for java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
Radu-Voinea committed Sep 24, 2024
1 parent 4277593 commit 0582b23
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fun DependencyHandlerScope.applyDependencies() {
if(project.properties["com.voinearadu.utils.local"] != null){
api(project(project.properties["com.voinearadu.utils.local"] as String))
}else{
api("com.voinearadu:utils:1.1.5")
api("com.voinearadu:utils:1.1.6")
}

// Annotations
Expand Down Expand Up @@ -63,8 +63,8 @@ subprojects {

tasks {
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ reflections = { module = "org.reflections:reflections", version = "0.10.2" }
luckperms = { module = "net.luckperms:api", version = "5.4" }
kyori_minimessage = { module = "net.kyori:adventure-text-minimessage", version = "4.17.0" }
kyori_adventure_fabric = { module = "net.kyori:adventure-platform-fabric", version = "5.9.0" }
voinearadu_utils = { module = "com.voinearadu:utils", version = "1.1.5" }
voinearadu_utils = { module = "com.voinearadu:utils", version = "1.1.6" }
2 changes: 1 addition & 1 deletion src/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dependencies {
if (project.properties["com.voinearadu.utils.local"] != null) {
api(project(project.properties["com.voinearadu.utils.local"] as String))
} else {
api("com.voinearadu:utils:1.1.5")
api("com.voinearadu:utils:1.1.6")
}
api(libs.luckperms)
api(libs.kyori.minimessage)
Expand Down
2 changes: 1 addition & 1 deletion src/fabric_20/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
if (project.properties["com.voinearadu.utils.local"] != null) {
api(project(project.properties["com.voinearadu.utils.local"] as String))
} else {
api("com.voinearadu:utils:1.1.5")
api("com.voinearadu:utils:1.1.6")
}
api(libs.luckperms)
modApi(libs.kyori.adventure.fabric)
Expand Down
2 changes: 1 addition & 1 deletion src/velocity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
if (project.properties["com.voinearadu.utils.local"] != null) {
api(project(project.properties["com.voinearadu.utils.local"] as String))
} else {
api("com.voinearadu:utils:1.1.5")
api("com.voinearadu:utils:1.1.6")
}

// Annotations
Expand Down

0 comments on commit 0582b23

Please sign in to comment.