Skip to content

Commit

Permalink
Gradle: Import a task instead of using the fully qualified name
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Nov 8, 2022
1 parent 3b19947 commit 169bbb6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask

import io.gitlab.arturbosch.detekt.Detekt

import org.jetbrains.compose.desktop.application.dsl.TargetFormat
Expand Down Expand Up @@ -67,7 +69,7 @@ configurations.all {
}
}

tasks.named<com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask>("dependencyUpdates").configure {
tasks.named<DependencyUpdatesTask>("dependencyUpdates").configure {
gradleReleaseChannel = "current"
outputFormatter = "json"

Expand Down

0 comments on commit 169bbb6

Please sign in to comment.