0

我正在做一个 Maven 项目,我想知道它的基本结构。我知道有一个 pom.xml 定义了项目中涉及的工件。但是在我的项目中,有 5 个 pom.xml。所以我想知道 pom 的确切作用是什么以及我们如何处理依赖关系。

感谢是否有人可以建议任何可以指导的有用书籍或资源。

问候阿努拉格

4

4 回答 4

1

假设它是一个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)
于 2013-03-21T10:34:37.320 回答
0

您可以参考链接以了解有关 POM 的更多信息

http://maven.apache.org/pom.html
http://www.tutorialspoint.com/maven/maven_pom.htm

于 2013-03-21T10:25:32.390 回答
0

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.

于 2013-03-21T10:16:39.510 回答
0

您可以从http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html开始,我可以推荐“Maven 示例:目录/文档 Sonatype”一书。祝你好运!

于 2013-03-21T10:23:03.517 回答