Arthur McGibbon
Arthur McGibbon
The `/home/frew/code/eg/common/scala/config/build/libs/zr-config.jar"` line shows bloop thinks this is a dependency jar and the fact that the `dependencies` section is empty shows it doesn't think this is a project dependency. Both...
@frioux I've had a proper look at your setup and I don't think there's anything wrong with it. It's fine to setup composite builds to manage large codebases. However `includeBuild`...
@spangaer does changing the annotation to include the parameter name fix this issue? e.g. `@SuppressWarnings(value = "unchecked")`
I assume you have the `-Xlint:path` or `-Xlint:all` option set? If this works in Gradle then I can only guess that Gradle is filtering out empty directories, which seems to...
@edoardocomar Ah - it looks like there is also a Bloop issue in that it creates empty directories `classes-empty-ProjectName`. I have no idea why it does this. A workaround for...
@ckipp01 Gradle version being used is 6.2 so you have to use JDK 13 or lower to build with `./gradlew assemble` Or change the `gradle/wrapper/gradle.properties` file to contain `distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip` to...
The reason for this is that I was looking to implement `buildTarget/jvmTestEnvironment` on the Gradle build server but there is no way to pass back `framework` like with `buildTarget/scalaTestClasses`, so...
Is the Kotlin extension spec [here](https://github.com/JetBrains/bazel-bsp/blob/ec256a99f85e1df882439308a6dbeb6951e28cd2/protocol/src/main/kotlin/org/jetbrains/bsp/KotlinBuildTarget.kt)? And is that pretty much final? Also - what exactly is in the `associates` field and how does it differ from `BuildTarget#dependencies`. The Go...
@abrams27 Ah thanks. I don't know Kotlin and didn't realise `internal` was a visibility keyword.
How would test results be collated - is that currently done by the build server and passed back by BSP?