<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <!-- 指定當前pom的版本信息 --> <modelVersion>4.0.0</modelVersion> <!-- 項目包名 --> <groupId>com.imooc.maven02</groupId> <!-- 模塊名稱 --> <artifactId>maven02-model</artifactId> <!-- 當前項目的版本號 --> <version>0.0.1</version> <!-- 默認是jar, 還能夠是war zip pom --> <packaging>jar</packaging> <!-- 項目名稱 --> <name></name> <!-- 項目地址 --> <url></url> <developers></developers> <licenses></licenses> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <!-- 指定依賴所運行的範圍, 三種classpath範圍:編譯、運行、測試。有點像npm中的dependency和devDependency的概念 --> <scope>test</scope> <!-- 設置依賴是否可選 --> <optional></optional> <!-- 排除依賴 --> <exclusions> <exclusion></exclusion> </exclusions> </dependency> <dependency> <groupId>com.imooc.maven01</groupId> <artifactId>maven01-model</artifactId> <version>0.0.1</version> </dependency> </dependencies> <!-- 依賴管理,項目不引入這裏的依賴,這裏的依賴只提供子項目繼承所用 --> <dependencyManagement> </dependencyManagement> <build> <!-- 插件列表 --> <plugins> </plugins> </build> <!-- 用於指定爲其餘jar包的容器,做爲父類 --> <!-- <parent> 項目包名 <groupId>com.imooc.maven02</groupId> 模塊名稱 <artifactId>maven02-model2</artifactId> 當前項目的版本號 <version>0.0.1</version> </parent> --> <!-- 指定多個模塊一塊兒編譯進倉庫 --> <modules></modules> </project>