我正在做一个 Maven 项目,我想知道它的基本结构。我知道有一个 pom.xml 定义了项目中涉及的工件。但是在我的项目中,有 5 个 pom.xml。所以我想知道 pom 的确切作用是什么以及我们如何处理依赖关系。
感谢是否有人可以建议任何可以指导的有用书籍或资源。
问候阿努拉格
我正在做一个 Maven 项目,我想知道它的基本结构。我知道有一个 pom.xml 定义了项目中涉及的工件。但是在我的项目中,有 5 个 pom.xml。所以我想知道 pom 的确切作用是什么以及我们如何处理依赖关系。
感谢是否有人可以建议任何可以指导的有用书籍或资源。
问候阿努拉格
假设它是一个java项目,基本结构是:
Parent Dir
-src/main/java/ java source files for the application (included in the JAR/WAR)
-src/main/resourcs/ resource files, xml, properties, etc (included in the JAR/WAR)
-src/test/java/ java source files for tests (only used during testing)
-src/test/resources/ resource files for testing (only used during testing)
您可以参考链接以了解有关 POM 的更多信息
http://maven.apache.org/pom.html
http://www.tutorialspoint.com/maven/maven_pom.htm
Read Sonatype's "Maven: The Definitive Guide" (also known as "Maven By Example"). The book is available for free from their site, or you can buy it.
您可以从http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html开始,我可以推荐“Maven 示例:目录/文档 Sonatype”一书。祝你好运!