- Mastering Apache Maven 3
- Prabath Siriwardena
- 58字
- 2021-08-06 19:46:39
The POM hierarchy
POM files maintain a parent-child relationship between them. A child POM file inherits all the configuration elements from its parent POM file. This is how Maven sticks to its design philosophy, which is convention over configuration. The minimal POM configuration for any Maven project is extremely simple, which is as follows:
<project> <modelVersion>4.0.0</modelVersion> <groupId>com.packt</groupId> <artifactId>sample-one</artifactId> <version>1.0.0</version> </project>
推薦閱讀
- Learn ECMAScript(Second Edition)
- Django+Vue.js商城項目實戰
- Java程序設計實戰教程
- Java范例大全
- Mastering Yii
- PLC編程及應用實戰
- Hands-On Functional Programming with TypeScript
- Angular開發入門與實戰
- Visual FoxPro程序設計習題集及實驗指導(第四版)
- 利用Python進行數據分析
- R用戶Python學習指南:數據科學方法
- Java EE企業級應用開發教程(Spring+Spring MVC+MyBatis)
- Orchestrating Docker
- Java EE Web應用開發基礎
- Python Web自動化測試設計與實現