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 27, 2023
1 parent 8f509b9 commit e165d10
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 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@87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6
with:
arguments: shadowJar
- name: Upload a Build Artifact
Expand Down
18 changes: 9 additions & 9 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.34.0")

// 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("org.postgresql:postgresql:42.7.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 All @@ -75,7 +75,7 @@ dependencies {
testImplementation("org.mockito:mockito-junit-jupiter:5.7.0")

// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
implementation("org.apache.commons:commons-lang3:3.13.0")
implementation("org.apache.commons:commons-lang3:3.14.0")
}

tasks.getByName<Test>("test") {
Expand Down

0 comments on commit e165d10

Please sign in to comment.