Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mr-archano/6e5e73b220a70d9b6858 to your computer and use it in GitHub Desktop.
Save mr-archano/6e5e73b220a70d9b6858 to your computer and use it in GitHub Desktop.
Prevent Gradle Workers from taking focus! #DevelopersLikeComfort
// You can place it in the root build.gradle
allprojects {
tasks.withType(JavaForkOptions) {
// Forked processes like GradleWorkerMain for tests won't steal focus!
jvmArgs '-Djava.awt.headless=true'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment