- Notifications
You must be signed in to change notification settings - Fork12
Installing Maven
Richard Domander edited this pageSep 11, 2018 ·1 revision
Maven is a build automation tool. It makes building your project, and managing its dependencies much easier than doing things by hand. For an in-depth guide on how to use Maven in an ImageJ related project seehttp://imagej.net/Maven.
Make sure you install Maven 3.x or newer
Install Maven with your favourite package management tool such asSynaptic orapt-get.
- In the terminal, type
sudo apt-get install maven
- If the command fails, or
apt-get
doesn't get Maven 3.x, refer to thispost for further help - Verify your installation by typing
mvn -version
If you haveChocolatey, installed:
- Open command line inadministrator mode
- Type
choco install maven
If you don't want to go the Chocolatey route, follow thisguide. Note that the guide is a bit dated, so use JDK 1.8 or newer instead.
Please refer to thisguide