https://github.com/edjeffreys/neotest-java
Java adapter for Neotest, with multi-module support.
https://github.com/edjeffreys/neotest-java
java neotest neotest-java neovim vim
Last synced: 4 months ago
JSON representation
Java adapter for Neotest, with multi-module support.
- Host: GitHub
- URL: https://github.com/edjeffreys/neotest-java
- Owner: edjeffreys
- License: mit
- Created: 2024-08-02T23:15:48.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-03T11:21:44.000Z (almost 2 years ago)
- Last Synced: 2025-09-09T15:59:39.026Z (10 months ago)
- Topics: java, neotest, neotest-java, neovim, vim
- Language: Lua
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Neotest-Java
[Neotest](https://github.com/nvim-neotest/neotest) adapter for Java
### Installation
#### lazy.nvim
```lua
return {
{
"edjeffreys/neotest-java",
dependencies = {
"nvim-treesitter/nvim-treesitter",
},
},
{
"nvim-neotest/neotest",
opts = {
log_level = vim.log.levels.DEBUG,
adapters = {
["neotest-java"] = {},
},
},
},
}
```
### Limitations
This adapter currently only supports gradle. This has been built to support my own Java needs for work; your mileage may vary.
### Todo
- [ ] Support maven projects