Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Jan 14, 2024
1 parent aa56b4e commit 15c4d4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions engine/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
listOf(
"com.squareup.okhttp3:mockwebserver",
"com.squareup.okhttp3:okhttp"
).onEach {
).forEach {
implementation(it) {
version {
strictly("[4,5)")
Expand All @@ -57,7 +57,7 @@ dependencies {
"org.jetbrains.kotlin:kotlin-stdlib-jdk8",
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-test"
).onEach {
).forEach {
implementation(it) {
version {
strictly("[1.6,1.10)")
Expand Down
4 changes: 2 additions & 2 deletions integrationtest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies {
listOf(
"com.squareup.okhttp3:mockwebserver",
"com.squareup.okhttp3:okhttp"
).onEach {
).forEach {
implementation(it) {
version {
strictly("[4,5)")
Expand All @@ -46,7 +46,7 @@ dependencies {
"org.jetbrains.kotlin:kotlin-stdlib-jdk8",
"org.jetbrains.kotlin:kotlin-stdlib-common",
"org.jetbrains.kotlin:kotlin-test"
).onEach {
).forEach {
implementation(it) {
version {
strictly("[1.6,1.10)")
Expand Down

0 comments on commit 15c4d4a

Please sign in to comment.