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 f3c2bb6 commit a746732
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 @@ -18,6 +18,14 @@ sonarqube {
}
}

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)
}
}

subprojects {

apply(plugin = "java")
Expand Down

0 comments on commit a746732

Please # to comment.