- 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.
- 精通Nginx(第2版)
- Rust實戰
- 實戰Java程序設計
- 編寫高質量代碼:改善C程序代碼的125個建議
- Python高效開發實戰:Django、Tornado、Flask、Twisted(第3版)
- C#程序設計
- 焊接機器人系統操作、編程與維護
- Oracle GoldenGate 12c Implementer's Guide
- Vue.js 2 Web Development Projects
- Buildbox 2.x Game Development
- Xcode 6 Essentials
- Go語言入門經典
- ASP.NET開發寶典
- INSTANT Apache Hive Essentials How-to
- 一步一步學Spring Boot:微服務項目實戰(第2版)