we did something

This commit is contained in:
Aram Markarov
2025-09-24 22:57:58 +02:00
parent 0712f38bf6
commit 2ab8372f82
4 changed files with 24 additions and 68 deletions
+8
View File
@@ -0,0 +1,8 @@
require('maven').setup({
executable = "mvn", -- `mvn` should be in your `PATH`, or the path to the maven exectable, for example `./mvnw`
cwd = nil, -- work directory, default to `vim.fn.getcwd()`
settings = nil, -- specify the settings file or use the default settings
commands = { -- add custom goals to the command list
{ cmd = { "clean", "compile" }, desc = "clean then compile" },
},
})