Skip to content

Commit

Permalink
Remove unneeded CC workaround for main() task
Browse files Browse the repository at this point in the history
Gradle 8.7 now supports System.in natively and the workaround is no
longer needed.
  • Loading branch information
mlopatkin committed May 12, 2024
1 parent 1769e06 commit 32f5ffa
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,3 @@ include("parsers")
include("search")
include("search:logrecord")
include("widgets")

gradle.taskGraph.whenReady {
allTasks.forEach { task ->
if (task.name.endsWith(".main()") && task is JavaExec) {
task.notCompatibleWithConfigurationCache("IDEA-injected JavaExec task uses PipedInputStream")
}
}
}

0 comments on commit 32f5ffa

Please sign in to comment.