- 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.
- 極簡算法史:從數學到機器的故事
- Learn Blockchain Programming with JavaScript
- Hadoop+Spark大數據分析實戰
- Python機器學習基礎教程
- Modern C++ Programming Cookbook
- Illustrator CC平面設計實戰從入門到精通(視頻自學全彩版)
- PHP與MySQL權威指南
- Java Hibernate Cookbook
- PHP項目開發全程實錄(第4版)
- Java Web開發基礎與案例教程
- 基于JavaScript的WebGIS開發
- Building Microservices with Go
- Python程序設計現代方法
- Mastering Docker(Second Edition)
- Learning Embedded Android N Programming