20230813 Bloop Setup with Gradle
Update build.gradle
Add the following section after plugins section of build.gradle.
allprojects {
// test is for compatibility with Metals import
if (!plugins.hasPlugin("bloop")) {
apply plugin: "bloop"
}
}
Update