Skip to content

Commit

Permalink
chore: Update changelog with information about the change
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Mar 27, 2024
1 parent f7f2662 commit 9e5ec16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -30,6 +30,8 @@
| [6b45eb6](https://github.com/JetBrains/bazel-bsp/commit/6b45eb61fb90c143b845cae69e2f69c6c1b4460d)
- Include libraries defined in `jdeps` files during sync.
| [bb47e49](https://github.com/JetBrains/bazel-bsp/commit/bb47e493fc595ddf21438f454cee7a6cd756fc0b)
- Add support for buildTarget/jvmCompileClasspath
| [f7f2662](https://github.com/JetBrains/bazel-bsp/commit/f7f26623ce3254b2f1ecda95329b665d05862109)

### Fixes 🛠️

Expand Down
Expand Up @@ -195,7 +195,7 @@ class BspProjectMapper(
val canTest = module.tags.contains(Tag.TEST) && !module.tags.contains(Tag.MANUAL)
val canRun = module.tags.contains(Tag.APPLICATION) && !module.tags.contains(Tag.MANUAL)
val canDebug = canRun || canTest // runnable and testable targets should be debuggable
return BuildTargetCapabilities().also { it.canCompile = canCompile; it.canTest = canTest; it.canRun = canRun; it.canDebug = canDebug; }
return BuildTargetCapabilities().also { it.canCompile = canCompile; it.canTest = canTest; it.canRun = canRun; it.canDebug = canDebug }
}

private fun isBuildableIfManual(module: Module): Boolean =
Expand Down

0 comments on commit 9e5ec16

Please sign in to comment.