- Mastering Apache Maven 3
- Prabath Siriwardena
- 98字
- 2021-08-06 19:46:39
Project Object Model
Any Maven project must have a pom.xml
file. POM is the Maven project descriptor, just like the web.xml
file in your Java EE web application or the build.xml
file in your Ant project. The following code lists out all the key elements in a Maven pom.xml
file. As we proceed with the book, we will discuss how to use each element in the most effective manner:
<project> <parent>...</parent> <modelVersion>4.0.0</modelVersion> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> <packaging>...</packaging> <name>...</name> <description>...</description> <url>...</url> <inceptionYear>...</inceptionYear> <licenses>...</licenses> <organization>...</organization> <developers>...</developers> <contributors>...</contributors> <dependencies>...</dependencies> <dependencyManagement>...</dependencyManagement> <modules>...</modules> <properties>...</properties> <build>...</build> <reporting>...</reporting> <issueManagement>...</issueManagement> <ciManagement>...</ciManagement> <mailingLists>...</mailingLists> <scm>...</scm> <prerequisites>...</prerequisites> <repositories>...</repositories> <pluginRepositories>...</pluginRepositories> <distributionManagement>...</distributionManagement> <profiles>...</profiles> </project>
推薦閱讀
- 自己動手實現Lua:虛擬機、編譯器和標準庫
- VMware vSphere 6.7虛擬化架構實戰指南
- 小程序開發原理與實戰
- Mastering Business Intelligence with MicroStrategy
- 深度學習:Java語言實現
- Test-Driven Machine Learning
- Go語言編程
- Apache Camel Developer's Cookbook
- Getting Started with React VR
- C語言程序設計與應用實驗指導書(第2版)
- PHP+MySQL Web應用開發教程
- 跟小樓老師學用Axure RP 9:玩轉產品原型設計
- ArcGIS Blueprints
- 微信小程序開發實戰教程(PHP+Laravel+MySQL)(微課版)
- C程序員從校園到職場