Arthur McGibbon
Arthur McGibbon
As far as I understand - Bloop intentionally doesn't copy resources into the classes dir. Instead it puts the resources dir on the classpath (and expects it to be on...
Sadly it depends on how people are using other Scala plugins. Gradle plugins share the same classpath. So if you have no other Gradle plugins _built with Scala_ in your...
I've been mulling over how to best to approach it. JUnit 5 allows various different ways of annotating tests that go beyond what the SBT test-interface can identify e.g. ```...
As far as I understand... To identify tests, SBT (and Bloop) iterate through all the **public** classes and methods in the project classes dir and query the specified test frameworks...
You should probably ask the author about it but I don't think the plugin uses the test discovery sbt test interface methods **at all**. You can see [here](https://github.com/sbt/junit-interface/blob/320b6787dceb1b38f33064f6e74713dc862a87c8/src/main/java/com/novocode/junit/JUnitFingerprint.java#L5) that the...
Can this not be solved by adding something like `getMinimumScope` method to `sbt.testing.Fingerprint` and have it return `Public, Package Private etc.` Then maybe [Discovery](https://github.com/sbt/zinc/blob/c18637c1b30f8ab7d1f702bb98301689ec75854b/internal/zinc-apiinfo/src/main/scala/xsbt/api/Discovery.scala#L26) can be changed to take that...
FYI - This should only ever be needed if another Gradle plugin is being used and _that_ is only compiled under Scala 3 as plugins share the same classpath in...
I seem to remember something about these not being included in every release or not in every installation method. For bash you can create a blank file `~/.bloop/bash/bloop` and copy...
@slovvik I don't know much about SBT but can you use [this document's suggestion](https://scalacenter.github.io/bloop/docs/build-tools/sbt#enable-custom-configurations) as a workaround? Adding `addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.2")` to `project/plugins.sbt` and using something like... ```scala...
I don't know why the export should take anywhere near that long. I've had to create test projects with 100s of subprojects and BloopInstall has only taken 10s to run....