Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Gradle: 8.11.1 -> 8.12
Gradle Galaxy: 1.3.2 -> 1.3.3
JDA: 5.1.2 -> 5.2.2
HikariCP: 6.0.0 -> 6.2.1
Logback: 1.5.8 -> 1.5.15
  • Loading branch information
srnyx committed Jan 5, 2025
1 parent f227013 commit 1117efe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ import xyz.srnyx.gradlegalaxy.utility.setupPublishing

plugins {
application
id("xyz.srnyx.gradle-galaxy") version "1.3.2"
id("xyz.srnyx.gradle-galaxy") version "1.3.3"
id("com.gradleup.shadow") version "8.3.5"
}

setupJda("5.1.2", "xyz.srnyx", "3.2.0", "A simple library for JDA Discord bots", JavaVersion.VERSION_21)
setupJda("5.2.2", "xyz.srnyx", "3.2.0", "A simple library for JDA Discord bots", JavaVersion.VERSION_21)

repository(Repository.JITPACK)
dependencies {
implementation("xyz.srnyx", "java-utilities", "2.0.0") // General Java utility library
implementation("io.github.freya022", "BotCommands", "2.10.4") // Command framework
implementation("org.spongepowered", "configurate-yaml", "4.1.2") // Config manager
implementation("org.postgresql", "postgresql", "42.7.4") // Database
implementation("com.zaxxer", "HikariCP", "6.0.0") // Database
implementation("ch.qos.logback", "logback-classic", "1.5.8") // Logging
implementation("com.zaxxer", "HikariCP", "6.2.1") // Database
implementation("ch.qos.logback", "logback-classic", "1.5.15") // Logging
}

setupPublishing(
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down

0 comments on commit 1117efe

Please sign in to comment.