Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 19, 2023
1 parent 8f509b9 commit fce17fb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Run checkstyle
run: ./gradlew checkstyleMain
- name: Build with Gradle
uses: gradle/gradle-build-action@0bfe00a136db5e61ba3416b372542a65863a9fee
uses: gradle/gradle-build-action@9bca466e2722baf9e77b4f929bbe0af18848791f
with:
arguments: shadowJar
- name: Upload a Build Artifact
Expand Down
14 changes: 7 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
}

checkstyle {
toolVersion = "10.12.4"
toolVersion = "10.12.5"

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

Expand All @@ -30,7 +30,7 @@ checkstyle {

dependencies {
// JDA
implementation("net.dv8tion:JDA:5.0.0-beta.17") {
implementation("net.dv8tion:JDA:5.0.0-beta.18") {
exclude("opus-java", "opus-java")
}

Expand All @@ -44,27 +44,27 @@ dependencies {
implementation("pw.chew:jda-chewtils-command:2.0-SNAPSHOT")

// Sentry.io integration
implementation("io.sentry:sentry:6.33.0")
implementation("io.sentry:sentry:6.33.1")

// ORMLite
implementation("com.j256.ormlite:ormlite-core:6.1")
implementation("com.j256.ormlite:ormlite-jdbc:6.1")

// HikariCP
implementation("com.zaxxer:HikariCP:5.0.1")
implementation("com.zaxxer:HikariCP:5.1.0")

// Database drivers
implementation("mysql:mysql-connector-java:8.0.33")
implementation("org.postgresql:postgresql:42.6.0")
implementation("com.h2database:h2:2.2.224")
implementation("org.mariadb.jdbc:mariadb-java-client:3.2.0")
implementation("org.mariadb.jdbc:mariadb-java-client:3.3.0")

// Gson
implementation("com.google.code.gson:gson:2.10.1")

// tests
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")

// mockwebserver
testImplementation("com.squareup.okhttp3:mockwebserver:4.12.0")
Expand Down

0 comments on commit fce17fb

Please sign in to comment.