1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
return {
  "eatgrass/maven.nvim",
  cmd = { "Maven", "MavenExec" },
  dependencies = "nvim-lua/plenary.nvim",
  config = function()
    require("maven").setup({
      executable = "mvnd",
      commands = {
        { cmd = { "clean", "install", "-DskipTests=true" }, desc = "clean, compile, without tests" },
        { cmd = { "clean", "install" }, desc = "clean, compile" },
      },
    })
  end,
}
  |