Skip to content

Commit

Permalink
🛠️build: update project dependencies
Browse files Browse the repository at this point in the history
Updated the project dependencies and Java version 1.8 -> 21
  • Loading branch information
retrozinndev committed Jan 3, 2024
1 parent b92fed4 commit 6b72179
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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 @@ repositories {

dependencies {
// This dependency is used by the application.
implementation("com.google.guava:guava:32.1.1-jre")
implementation("com.google.guava:guava:33.0.0-jre")
// Game Libraries
implementation(files("libs/discord-rpc.jar", "libs/GJAPI.jar"))
}
Expand All @@ -31,7 +31,7 @@ sourceSets {
// Apply a specific Java toolchain to ease working on different environments.
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
languageVersion.set(JavaLanguageVersion.of(21))
}
targetCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_21
}
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

plugins {
// Apply the foojay-resolver plugin to allow automatic download of JDKs
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
}

rootProject.name = "TheTraveler"

0 comments on commit 6b72179

Please sign in to comment.