- Spring 5.0 By Example
- Claudio Eduardo de Oliveira
- 194字
- 2021-06-24 19:17:28
Installing Maven
Maven is a popular build tool for Java development. Some important open source projects were built using this tool. There are features that facilitate the build process, standardize the project structure, and provide some guidelines for best practices development.
We will install Maven, but the installation step should be executed after the OpenJDK installation.
Open a terminal and execute the following:
sudo apt-get install maven -y
Check the installation using this command:
mvn -version
You should see the following output, although the version may be different for you:

Well done. Now we have Maven installed. Maven has a vibrant community that produces many plugins to help developers with important tasks. There are plugins to execute a unit test and plugins to prepare the project for the release event that can be integrated with SCM software.
We will use the spring boot maven plugin and docker maven plugin. The first converts our application to a JAR file and the second enables us to integrate with Docker Engine to create images, run containers, and much more. In the next few chapters, we will learn how to configure and interact with these plugins.
- Vue.js 3.x快速入門
- Building a Game with Unity and Blender
- Scala Design Patterns
- Learning ASP.NET Core 2.0
- FreeSWITCH 1.6 Cookbook
- Java虛擬機(jī)字節(jié)碼:從入門到實(shí)戰(zhàn)
- Instant QlikView 11 Application Development
- TypeScript實(shí)戰(zhàn)指南
- 實(shí)戰(zhàn)Java高并發(fā)程序設(shè)計(jì)(第3版)
- Mastering Apache Spark 2.x(Second Edition)
- Learning Data Mining with R
- Learning Three.js:The JavaScript 3D Library for WebGL
- Python Web數(shù)據(jù)分析可視化:基于Django框架的開發(fā)實(shí)戰(zhàn)
- Learning Node.js for .NET Developers
- CRYENGINE Game Development Blueprints