Skip to content

Commit

Permalink
refresh versions
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Aug 23, 2023
1 parent 20a5a85 commit f10dde6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ buildscript {
}

plugins {
id 'com.github.kt3k.coveralls' version "2.12.0"
id "io.codearte.nexus-staging" version '0.30.0'
id 'org.jetbrains.kotlin.plugin.serialization' version "1.8.10"
id 'com.github.kt3k.coveralls'
id "io.codearte.nexus-staging"
id 'org.jetbrains.kotlin.plugin.serialization'
}

apply plugin: 'io.codearte.nexus-staging'
Expand Down Expand Up @@ -93,9 +93,9 @@ subprojects {
}

dependencies {
api "org.jetbrains.kotlin:kotlin-stdlib:_"
testApi "org.junit.jupiter:junit-jupiter-api:_"
testApi "org.junit.jupiter:junit-jupiter-engine:_"
api Kotlin.stdlib
testApi Testing.junit.jupiter.api
testApi Testing.junit.jupiter.engine
testApi "com.natpryce:hamkrest:_"
}

Expand Down
4 changes: 2 additions & 2 deletions fabrikate4k/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ apply plugin: 'kotlinx-serialization'

dependencies {
api "org.jetbrains.kotlin:kotlin-reflect:_"
testApi "org.jetbrains.kotlin:kotlin-test:_"
testApi "org.jetbrains.kotlinx:kotlinx-serialization-json:_"
testApi Kotlin.test
testApi KotlinX.serialization.json
}
2 changes: 1 addition & 1 deletion mock4k/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
description = 'ForkHandles: The very cheapest mocking framework platform.'

dependencies {
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
testImplementation(KotlinX.coroutines.core)
}
4 changes: 2 additions & 2 deletions result4k/core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id "me.champeau.gradle.jmh" version "0.5.3"
id "me.champeau.gradle.jmh"
}

description = 'A friendly Kotlin Result type'

dependencies {
testApi "org.jetbrains.kotlin:kotlin-test:_"
testApi Kotlin.test
}

compileJmhKotlin.kotlinOptions.jvmTarget = "1.8"
Expand Down
2 changes: 2 additions & 0 deletions versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ version.kotest=5.6.2

version.kotlin=1.9.0

version.kotlinx.coroutines=1.7.3

version.kotlinx.serialization=1.6.0

version.org.kt3k.gradle.plugin..coveralls-gradle-plugin=2.8.3

0 comments on commit f10dde6

Please sign in to comment.