Skip to content

Commit

Permalink
GH-1957 Upgrade Exposed & SQLite driver (Resolve #1957)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Nov 1, 2023
1 parent e175fd4 commit e185d32
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions reposilite-backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ dependencies {
val awsSdkV1 = "1.12.579"
testImplementation("com.amazonaws:aws-java-sdk-s3:$awsSdkV1")

val exposed = "0.41.1"
val exposed = "0.44.1"
api("org.jetbrains.exposed:exposed-core:$exposed")
api("org.jetbrains.exposed:exposed-dao:$exposed")
api("org.jetbrains.exposed:exposed-jdbc:$exposed")
Expand All @@ -90,7 +90,7 @@ dependencies {
implementation("org.postgresql:postgresql:42.6.0")
implementation("com.h2database:h2:2.2.224")

val exposedUpsert = "1.2.1"
val exposedUpsert = "1.2.2"
api("net.dzikoysk:exposed-upsert:$exposedUpsert")

val jackson = "2.15.3"
Expand Down Expand Up @@ -203,7 +203,7 @@ kapt {
}

jacoco {
toolVersion = "0.8.8"
toolVersion = "0.8.11"
}

tasks.test {
Expand Down Expand Up @@ -261,12 +261,12 @@ val testCoverage by tasks.registering {
":reposilite-backend:jacocoTestReport",
":reposilite-backend:jacocoTestCoverageVerification"
)

tasks["integrationTest"].mustRunAfter(tasks["test"])
tasks["jacocoTestReport"].mustRunAfter(tasks["integrationTest"])
tasks["jacocoTestCoverageVerification"].mustRunAfter(tasks["jacocoTestReport"])
}

tasks["integrationTest"].mustRunAfter(tasks["test"])
tasks["jacocoTestReport"].mustRunAfter(tasks["integrationTest"])
tasks["jacocoTestCoverageVerification"].mustRunAfter(tasks["jacocoTestReport"])

detekt {
buildUponDefaultConfig = true
allRules = false
Expand Down

0 comments on commit e185d32

Please sign in to comment.