Skip to content

Commit

Permalink
Quick hack for the build breaking in IntelliJ IDEA on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
climategadgets committed Apr 17, 2024
1 parent 5642bc1 commit af9344f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,11 @@ sonarqube {
property("sonar.host.url", "https://sonarcloud.io")
}
}

doctor {
javaHome {
// Build breaks in IntelliJ IDEA on macOS even if JAVA_HOME is set correctly
// (it picks up JetBrains JDK instead)
failOnError.set(false)
}
}

0 comments on commit af9344f

Please sign in to comment.