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 2954ea6 commit e63a471
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 @@ -17,6 +17,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")
apply(plugin = "maven-publish")
Expand Down

0 comments on commit e63a471

Please sign in to comment.