An open API service indexing awesome lists of open source software.

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.

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