Skip to content

Maven build automation utility

Zeioth edited this page Apr 22, 2024 · 4 revisions

You can run your Maven projects by creating a Makefile like this in the working directory of your project.

maven_compile_and_run:
  maven build && java com.example.Program

maven_compile:
  maven build

maven_run:
  java com.example.Program

Now when you open compiler.nvim it will list the options you have defined in your Makefile

screenshot_2024-04-22_20-48-31_361890607

Clone this wiki locally