Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DrewCarlson committed Oct 19, 2023
1 parent 508c86e commit 6bdc880
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ jobs:
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build koverMergedXmlReport
arguments: build koverXmlReport

- name: Archive Reports
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: reports
path: '**/build/reports/*'
path: "build/reports/kover/report.xml"

- name: Publish Unit Test Results
uses: mikepenz/action-junit-report@v4
Expand All @@ -68,4 +68,4 @@ jobs:

- uses: codecov/codecov-action@v3
with:
files: "build/reports/kover/merged/xml/report.xml"
files: "report.xml"
9 changes: 8 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,14 @@ subprojects {
}
}

koverMerged { enable() }
dependencies {
kover(project(":kjob-api"))
kover(project(":kjob-core"))
kover(project(":kjob-inmem"))
kover(project(":kjob-jdbi"))
kover(project(":kjob-kron"))
kover(project(":kjob-mongo"))
}

project(":kjob-example") {
apply(plugin = "kotlinx-serialization")
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[versions]
kotlin = "1.8.21"
kotlin = "1.9.10"
coroutines = "1.7.3"
serialization = "1.6.0"
kover = "0.6.1"
kover = "0.7.4"
datetime = "0.4.1"
dokka = "1.9.10"
binary_compat = "0.13.2"

jdbi = "3.41.0"
jdbc_sqlite = "3.42.0.0"
jdbi = "3.41.3"
jdbc_sqlite = "3.43.2.1"
jdbc_postgres = "42.6.0"
jdbc_mysql = "8.1.0"

logback = "1.4.11"
spotless = "6.16.0"
ktlint = "0.47.1"

testLogger = "3.2.0"
testLogger = "4.0.0"
mockk = "1.13.8"
kotest = "5.7.2"
cronutils = "9.2.1"
Expand Down Expand Up @@ -58,7 +58,7 @@ kotest-runner = { module = "io.kotest:kotest-runner-junit5", version.ref = "kote
kotest-assertions = { module = "io.kotest:kotest-assertions-core", version.ref = "kotest" }
cronutils = { module = "com.cronutils:cron-utils", version.ref = "cronutils" }
embedMongo = { module = "de.flapdoodle.embed:de.flapdoodle.embed.mongo", version = "4.9.2" }
mongodbReactive = { module = "org.mongodb:mongodb-driver-reactivestreams", version = "4.10.2" }
mongodbReactive = { module = "org.mongodb:mongodb-driver-reactivestreams", version = "4.11.0" }
rxjava = { module = "io.reactivex.rxjava2:rxkotlin", version = "2.4.0" }

ktor-serialization = { module = "io.ktor:ktor-serialization-kotlinx-json", version.ref = "ktorio" }
Expand Down
2 changes: 2 additions & 0 deletions kjob-core/api/kjob-core.api
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ public abstract class kjob/core/internal/scheduler/SimplePeriodScheduler {
public final class kjob/core/job/JobExecutionType : java/lang/Enum {
public static final field BLOCKING Lkjob/core/job/JobExecutionType;
public static final field NON_BLOCKING Lkjob/core/job/JobExecutionType;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Lkjob/core/job/JobExecutionType;
public static fun values ()[Lkjob/core/job/JobExecutionType;
}
Expand Down Expand Up @@ -339,6 +340,7 @@ public final class kjob/core/job/JobStatus : java/lang/Enum {
public static final field FAILED Lkjob/core/job/JobStatus;
public static final field RUNNING Lkjob/core/job/JobStatus;
public static final field SCHEDULED Lkjob/core/job/JobStatus;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Lkjob/core/job/JobStatus;
public static fun values ()[Lkjob/core/job/JobStatus;
}
Expand Down

0 comments on commit 6bdc880

Please sign in to comment.