Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadiducho committed Nov 13, 2023
1 parent 692a102 commit 4792d2d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id 'java'
id 'application'
id "io.freefair.lombok" version "6.5.0.2"
id "io.freefair.lombok" version "8.4"
}

group = 'com.cadiducho'
version = '3.4'
version = '3.5'
sourceCompatibility = JavaVersion.VERSION_17;
mainClassName = 'com.cadiducho.bot.CadiBotServer'

Expand All @@ -28,17 +28,17 @@ dependencies {
implementation group: 'com.squareup.moshi', name: 'moshi', version: '1.13.0'
implementation group: 'com.squareup.moshi', name: 'moshi-adapters', version: '1.13.0'
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.10.0'
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '2.7.6'
implementation group: 'org.mariadb.jdbc', name: 'mariadb-java-client', version: '3.3.0'
implementation group: 'com.zaxxer', name: 'HikariCP', version: '5.0.1' // Database
implementation group: 'org.flywaydb', name: 'flyway-core', version: '9.3.1' // Database migrations
implementation group: 'org.flywaydb', name: 'flyway-mysql', version: '9.3.1' // Database migrations
implementation group: 'org.flywaydb', name: 'flyway-core', version: '10.0.0' // Database migrations
implementation group: 'org.flywaydb', name: 'flyway-mysql', version: '10.0.0' // Database migrations

//Tests
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.9.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.0'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.7.0'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '4.7.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.10.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.10.1'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.7.0'
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.7.0'
}

test {
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.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 4792d2d

Please sign in to comment.