Skip to content

Commit

Permalink
Update all dependencies (#60)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Aug 26, 2023
1 parent de0a318 commit c3af79e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
20 changes: 10 additions & 10 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
compileOnly("org.spigotmc:spigot-api:1.20.1-experimental-SNAPSHOT")
implementation("net.kyori:adventure-platform-bukkit:4.3.0")
implementation("net.kyori:adventure-text-minimessage:4.14.0")
implementation("dev.rollczi.litecommands:bukkit-adventure:2.8.8")
implementation("dev.rollczi.litecommands:bukkit-adventure:2.8.9")

// skull api
implementation("dev.rollczi:liteskullapi:1.3.0")
Expand All @@ -44,14 +44,14 @@ dependencies {
implementation("net.dzikoysk:cdn:1.14.4")

// expressible
implementation("org.panda-lang:expressible:1.3.5")
implementation("org.panda-lang:expressible:1.3.6")

// gitcheck
implementation("com.eternalcode:gitcheck:1.0.0")

// metrics and sentry
implementation("org.bstats:bstats-bukkit:3.0.2")
implementation("io.sentry:sentry:6.26.0")
implementation("io.sentry:sentry:6.28.0")

// database
implementation("com.zaxxer:HikariCP:5.0.1")
Expand All @@ -70,14 +70,14 @@ dependencies {
implementation("org.panda-lang:panda-utilities:0.5.2-alpha")

// errorprone
errorprone("com.google.errorprone:error_prone_core:2.20.0")
errorprone("com.google.errorprone:error_prone_core:2.21.1")

testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.3")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.3")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")

testImplementation("org.testcontainers:junit-jupiter:1.18.3")
testImplementation("org.testcontainers:mysql:1.18.3")
testImplementation("org.testcontainers:junit-jupiter:1.19.0")
testImplementation("org.testcontainers:mysql:1.19.0")
testImplementation("mysql:mysql-connector-java:8.0.33")
}

Expand All @@ -86,7 +86,7 @@ java {
}

checkstyle {
toolVersion = "10.12.1"
toolVersion = "10.12.2"

configFile = file("${rootDir}/config/checkstyle/checkstyle.xml")

Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
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.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 2 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit

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

0 comments on commit c3af79e

Please sign in to comment.