Skip to content

Commit

Permalink
chore(refactor): Address warnings in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarea committed Feb 6, 2023
1 parent 0a5ab44 commit 98167a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ tasks.withType(KotlinCompile).configureEach {
kotlinOptions.jvmTarget = "1.8"
}

tasks.withType(KotlinCompile).all {
tasks.withType(KotlinCompile).configureEach {
kotlinOptions.freeCompilerArgs = kotlinOptions.freeCompilerArgs + [
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
"-Xuse-experimental=kotlinx.coroutines.FlowPreview",
Expand All @@ -86,7 +86,7 @@ test {
useJUnitPlatform()
}

task integrationTest(type: Test) {
tasks.register('integrationTest', Test) {
description = 'Integration tests'
group = 'verification'

Expand Down

0 comments on commit 98167a3

Please sign in to comment.