Skip to content

Commit c7c3054

Browse files
committed
chore: fix junit test dep
1 parent 9357edd commit c7c3054

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,12 @@ For testing, a separate [sandbox project](/sandbox) is available with the plugin
8181
$ ./gradlew -p sandbox :build
8282
$ sandbox/build/libs/sandbox
8383

84+
# Show task graph
85+
$ ./gradlew build --task-graph
86+
8487
# Run other plugin tasks
8588
$ ./gradlew -p sandbox :dependencyUpdates --no-configuration-cache
89+
8690
# To see the plugin classpath
8791
$ ./gradlew -p sandbox :buildEnvironment | grep -i "dev.suresh"
8892
```

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ org.gradle.configuration-cache.problems=warn
99
org.gradle.kotlin.dsl.allWarningsAsErrors=true
1010
org.gradle.unsafe.isolated-projects=false
1111
org.gradle.daemon=true
12+
# org.gradle.configuration-cache.read-only=true
1213
# org.gradle.daemon.idletimeout=300000
1314
# org.gradle.logging.stacktrace=all
1415

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ kotlinx-multik = "0.2.3"
4545
kotlinx-dataframe = "1.0.0-Beta2"
4646
kotlinx-kandy = "0.8.1-local-5-dev-74"
4747
kotlin-statistics = "0.4.0-RC1"
48-
gradle-kotlin-dsl = "6.2.0"
48+
gradle-kotlin-dsl = "6.3.0"
4949
exoquery-plugin = "2.2.0-1.5.1.PL"
5050
exoquery-sql = "1.5.1.PL"
51-
exposed = "1.0.0-beta-5"
51+
exposed = "1.0.0-rc-1"
5252
postgresql = "42.7.7"
5353
embedded-postgres = "2.1.1"
5454
embedded-postgres-bom = "17.6.0"
@@ -57,7 +57,7 @@ kopy = "0.18.0+2.2.10"
5757
poko = "0.19.3"
5858
mappie = "2.2.10-1.4.2"
5959
akkurate = "0.11.0"
60-
kaml = "0.93.0"
60+
kaml = "0.94.0"
6161
snakeyaml-engine-kmp = "3.2.0"
6262
konsist = "0.17.3"
6363
decoroutinator = "2.5.7"
@@ -97,7 +97,7 @@ junit = "6.0.0-RC2"
9797
koin = "4.1.1-Beta1"
9898
koin-annotations = "2.2.0-RC1"
9999
metro = "0.4.0"
100-
kotest = "6.0.1"
100+
kotest = "6.0.2"
101101
mockk = "1.14.5"
102102
mokkery = "3.0.0-Beta1"
103103
wiremock = "4.0.0-beta.15"
@@ -204,10 +204,10 @@ rwmutex = "1.0.0"
204204
bluesky-ozone = "0.3.3"
205205

206206
# Compose
207-
jetbrains-compose = "1.9.0-rc01"
208-
jetbrains-compose-viewmodel = "2.9.3"
207+
jetbrains-compose = "1.10.0-alpha01"
208+
jetbrains-compose-viewmodel = "2.10.0-alpha01"
209209
jetbrains-compose-nav = "2.9.0-rc01"
210-
jetbrains-compose-adaptive = "1.2.0-alpha05"
210+
jetbrains-compose-adaptive = "1.2.0-alpha06"
211211
jetbrains-compose-icons = "1.7.3"
212212
kobweb = "0.23.1"
213213
detekt = "1.23.8"
@@ -235,7 +235,7 @@ gradle-develocity = "4.1.1"
235235
nmcp = "1.1.0"
236236
nexus-publish = "2.0.0"
237237
vanniktech-publish = "0.34.0"
238-
gradle-publish = "1.3.1"
238+
gradle-publish = "2.0.0"
239239
shadow = "9.1.0"
240240
spotless = "7.2.1"
241241
semver-plugin = "0.9.0"

plugins/project/src/main/kotlin/common/Multiplatform.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ fun KotlinMultiplatformExtension.jvmTarget(project: Project) =
6060
dependencies {
6161
api(project.dependencies.platform(libs.junit.bom))
6262
api(project.dependencies.platform(libs.testcontainers.bom))
63-
api(kotlin("test-junit5"))
6463
api(libs.mockk)
6564
api(libs.mockk.bdd)
6665
api(libs.slf4j.simple)

plugins/project/src/main/kotlin/dev.suresh.plugin.kotlin.jvm.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ dependencies {
241241
testImplementation(platform(libs.junit.bom))
242242
testImplementation(platform(libs.testcontainers.bom))
243243
testImplementation(kotlin("reflect"))
244-
testImplementation(kotlin("test-junit5"))
244+
testImplementation(kotlin("test"))
245245
testImplementation(libs.junit.jupiter)
246246
testImplementation(libs.kotlin.lincheck)
247247
testImplementation(libs.kotlinx.coroutines.test)

0 commit comments

Comments
 (0)