settings.xml文件说明 包含了本地仓库位置,远程仓库服务器以及认证信息等。 settings.xml存在于两个地方:
1 2 1. 安装的地方:$M2_HOME/conf/settings.xml 2. 用户的目录:${user.home}/.m2/settings.xml
前者又被叫做全局配置,后者被称为用户配置。如果两者都存在,它们的内容将被合并,并且用户范围的settings.xml优先
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 <?xml version="1.0" encoding="UTF-8"?> <settings 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/xsd/settings-1.0.0.xsd" > <localRepository > usr/local/maven</localRepository > <interactiveMode > true</interactiveMode > <usePluginRegistry > false</usePluginRegistry > <offline > false</offline > <pluginGroups > <pluginGroup > org.codehaus.mojo</pluginGroup > </pluginGroups > <proxies > <proxy > <id > myproxy</id > <active > true</active > <protocol > http://…</protocol > <host > proxy.somewhere.com</host > <port > 8080</port > <username > proxyuser</username > <password > somepassword</password > <nonProxyHosts > *.google.com|ibiblio.org</nonProxyHosts > </proxy > </proxies > <servers > <server > <id > server001</id > <username > my_login</username > <password > my_password</password > <privateKey > ${usr.home}/.ssh/id_dsa</privateKey > <passphrase > some_passphrase</passphrase > <filePermissions > 664</filePermissions > <directoryPermissions > 775</directoryPermissions > <configuration > </configuration > </server > </servers > <mirrors > <mirror > <id > planetmirror.com</id > <name > PlanetMirror Australia</name > <url > http://downloads.planetmirror.com/pub/maven2</url > <mirrorOf > central</mirrorOf > </mirror > </mirrors > <profiles > <profile > <id > test</id > <activation > <activeByDefault > false</activeByDefault > <jdk > 1.7</jdk > <os > <name > Windows XP</name > <family > Windows</family > <arch > x86</arch > <version > 5.1.2600</version > </os > <property > <name > mavenVersion</name > <value > 2.0.3</value > </property > <file > <exists > /usr/local/hudson/hudson-home/jobs/maven-guide-zh-to-production/workspace/</exists > <missing > /usr/local/hudson/hudson-home/jobs/maven-guide-zh-to-production/workspace/</missing > </file > </activation > <properties > <user.install > usr/local/winner/jobs/maven-guide</user.install > </properties > <repositories > <repository > <id > codehausSnapshots</id > <name > Codehaus Snapshots</name > <releases > <enabled > false</enabled > <updatePolicy > always</updatePolicy > <checksumPolicy > warn</checksumPolicy > </releases > <snapshots > <enabled /> <updatePolicy /> <checksumPolicy /> </snapshots > <url > http://snapshots.maven.codehaus.org/maven2</url > <layout > default</layout > </repository > </repositories > <pluginRepositories > <pluginRepository > <releases > <enabled /> <updatePolicy /> <checksumPolicy /> </releases > <snapshots > <enabled /> <updatePolicy /> <checksumPolicy /> </snapshots > <id /> <name /> <url /> <layout /> </pluginRepository > </pluginRepositories > <activeProfiles > <activeProfile > env-test</activeProfile > </activeProfiles > </profile > </profiles > </settings >
install package deploy区别 1 2 3 maven package:打包到本项目,一般是在项目target目录下。如果a项目依赖于b项目,打包b项目时,只会打包到b项目下target下,编译a项目时就会报错。 maven install:打包到本地仓库,如果没有设置过maven本地仓库,一般在用户/.m2目录下。如果a项目依赖于b项目,那么install b时,会在本地仓库同时生成pom文件和jar文件,可以看install b的日志: maven deploy:打包上传到远程仓库,如:私服nexus等,需要配置pom文件
mvn package “在使用mvn package进行编译、打包时,Maven会执行src/test/java中的JUnit测试用例,有时为了跳过测试,会使用参数-DskipTests和-Dmaven.test.skip=true,这两个参数的主要区别是: -DskipTests,不执行测试用例,但编译测试用例类生成相应的class文件至target/test-classes下。 -Dmaven.test.skip=true,不执行测试用例,也不编译测试用例类。”
1 mvn clean package # 依次执行了clean、resources、compile、testResources、testCompile、test、jar(打包)等7个阶段
package命令完成了项目编译、单元测试、打包功能,但没有把打好的可执行jar包(war包或其它形式的包)布署到本地maven仓库和远程maven私服仓库
mvn install mvn clean install # 依次执行了clean、resources、compile、testResources、testCompile、test、jar(打包)、install等8个阶段
install命令完成了项目编译、单元测试、打包功能,同时把打好的可执行jar包(war包或其它形式的包)布署到本地maven仓库,但没有布署到远程maven私服仓库
mvn deploy mvn clean deploy # 依次执行了clean、resources、compile、testResources、testCompile、test、jar(打包)、install、deploy等9个阶段
deploy命令完成了项目编译、单元测试、打包功能,同时把打好的可执行jar包(war包或其它形式的包)布署到本地maven仓库和远程maven私服仓库
maven命令行参数 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 mvn -v # –version 显示版本信息; mvn -V # –show-version 显示版本信息后继续执行Maven其他目标; mvn -h # –help 显示帮助信息; mvn -e, –errors 控制Maven的日志级别,产生执行错误相关消息; mvn -X # –debug 控制Maven的日志级别,产生执行调试信息; mvn -q # –quiet 控制Maven的日志级别,仅仅显示错误; mvn -Pxxx # 激活 id 为 xxx的profile (如有多个,用逗号隔开); mvn -Dxxx=yyy # 指定Java全局属性; mvn -o # –offline 运行offline模式,不联网更新依赖; mvn -N # –non-recursive 仅在当前项目模块执行命令,不构建子模块; mvn -pl # –module_name 在指定模块上执行命令; mvn -ff # –fail-fast 遇到构建失败就直接退出; mvn -fn # –fail-never 无论项目结果如何,构建从不失败; mvn -fae # –fail-at-end 仅影响构建结果,允许不受影响的构建继续; mvn -C # –strict-checksums 如果校验码不匹配的话,构建失败; mvn -c # –lax-checksums 如果校验码不匹配的话,产生告警; mvn -U # 强制更新snapshot类型的插件或依赖库(否则maven一天只会更新一次snapshot依赖); mvn -npu # –no-plugin-updates 对任何相关的注册插件,不进行最新检查(使用该选项使Maven表现出稳定行为,该稳定行为基于本地仓库当前可用的所有插件版本); mvn -cpu # –check-plugin-updates 对任何相关的注册插件,强制进行最新检查(即使项目POM里明确规定了Maven插件版本,还是会强制更新); mvn -up # –update-plugins [mvn -cpu]的同义词; mvn -B # –batch-mode 在非交互(批处理)模式下运行(该模式下,当Mven需要输入时,它不会停下来接受用户的输入,而是使用合理的默认值); mvn -f # –file 强制使用备用的POM文件; mvn -s, –settings 用户配置文件的备用路径; mvn -gs # –global-settings 全局配置文件的备用路径; mvn -emp # –encrypt-master-password 加密主安全密码,存储到Maven settings文件里; mvn -ep # –encrypt-password 加密服务器密码,存储到Maven settings文件里; mvn -npr # –no-plugin-registry 对插件版本不使用~/.m2/plugin-registry.xml(插件注册表)里的配置
Maven单独构建多模块项目中的单个模块 场景:
多模块项目各自引用,那么单独编译子模块的pom.xml文件会直接报错,如果编译父项目,那么可能会造成编译时间很慢,其中有些项目也不需要编译
解决方法:
Maven选项:
1 2 3 4 5 6 -pl, --projects Build specified reactor projects instead of all projects -am, --also-make If project list is specified, also build projects required by the list -amd, --also-make-dependents If project list is specified, also build projects that depend on projects on the list
单独构建模块jsoft-web,同时会构建jsoft-web模块依赖的其他模块
1 mvn install -pl jsoft-web -am
单独构建模块jsoft-common,同时构建依赖模块jsoft-common的其他模块
1 mvn install -pl jsoft-common -am -amd
pom.xml文件 Maven项目的核心是pom.xml,pom(Project Object Model项目对象模型 ) pom.xml文件定义了项目的基本信息,项目构建,项目依赖等。
1 2 3 4 5 6 7 8 9 <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 " > <modelVersion > 4.0.0</modelVersion > <groupId > com.fz.shiro</groupId > <artifactId > ShiroTest</artifactId > <packaging > war</packaging > <version > 0.0.1-SNAPSHOT</version > <name > ShiroTest Maven Webapp</name > </project >
porject :是所有元素的根元素 以下元素(groupId,artifactId,packaging,version)是maven的坐标,他们唯一标识了一个项目modelVersion :指定了当前模型的版本,对于Maven2和Maven3来说,它只能说4.0.0groupId :定义了项目属于哪个组,假如你在github上建立一个demo项目,那groupId应该com.github.demo。如果你的公司是百度,有个helloword的项目。那groupId应该为com.baidu.helloword如果你的helloword项目有很多模块,则按模块化分。com.baidu.helloword.模块名称artifactId :定义了当前maven项目在组中的唯一ID,假如你的项目为myapp,groupId为com.baid.myapp。那你的artifactId可以按模块划分。例如当前编写的是myapp项目中的工具类,则artifactId可以为myapp-utilspackaging :表示打包后项目的类型(默认是jar),web项目为warversion :指定了当前项目的版本,SNAPSHOT意为快照,表示正在开发中,不是稳定版本。name :声明了一个对于用户更为友好的项目名称
pom.xml文件详解 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 <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 " > <parent > <artifactId > xxx</artifactId > <groupId > xxx</groupId > <version > xxx</version > <relativePath > xxx</relativePath > </parent > <modelVersion > 4.0.0 </modelVersion > <groupId > xxx</groupId > <artifactId > xxx</artifactId > <packaging > jar </packaging > <version > 1.0-SNAPSHOT </version > <name > xxx-maven </name > <url > http://maven.apache.org </url > <description > A maven project to study maven. </description > <prerequisites > <maven > </maven > </prerequisites > <issueManagement > <system > jira </system > <url > http://jira.baidu.com/banseon </url > </issueManagement > <ciManagement > <system > </system > <url > </url > <notifiers > <notifier > <type > </type > <sendOnError > </sendOnError > <sendOnFailure > </sendOnFailure > <sendOnSuccess > </sendOnSuccess > <sendOnWarning > </sendOnWarning > <address > </address > <configuration > </configuration > </notifier > </notifiers > </ciManagement > <inceptionYear /> <mailingLists > <mailingList > <name > Demo </name > <post > banseon@126.com </post > <subscribe > banseon@126.com </subscribe > <unsubscribe > banseon@126.com </unsubscribe > <archive > http:/hi.baidu.com/banseon/demo/dev/ </archive > </mailingList > </mailingLists > <developers > <developer > <id > HELLO WORLD </id > <name > banseon </name > <email > banseon@126.com </email > <url > </url > <roles > <role > Project Manager </role > <role > Architect </role > </roles > <organization > demo </organization > <organizationUrl > http://hi.baidu.com/xxx </organizationUrl > <properties > <dept > No </dept > </properties > <timezone > -5 </timezone > </developer > </developers > <contributors > <contributor > <name > </name > <email > </email > <url > </url > <organization > </organization > <organizationUrl > </organizationUrl > <roles > <role > Project Manager </role > <role > Architect </role > </roles > <timezone > </timezone > <properties > <dept > No </dept > </properties > </contributor > </contributors > <licenses > <license > <name > Apache 2 </name > <url > http://www.baidu.com/banseon/LICENSE-2.0.txt </url > <distribution > repo </distribution > <comments > A business-friendly OSS license </comments > </license > </licenses > <scm > <connection > scm:svn:http://svn.baidu.com/banseon/maven/banseon/banseon-maven2-trunk(dao-trunk) </connection > <developerConnection > scm:svn:http://svn.baidu.com/banseon/maven/banseon/dao-trunk </developerConnection > <tag > </tag > <url > http://svn.baidu.com/banseon </url > </scm > <organization > <name > demo </name > <url > http://www.baidu.com/banseon </url > </organization > <build > <sourceDirectory > </sourceDirectory > <scriptSourceDirectory > </scriptSourceDirectory > <testSourceDirectory > </testSourceDirectory > <outputDirectory > </outputDirectory > <testOutputDirectory > </testOutputDirectory > <extensions > <extension > <groupId > </groupId > <artifactId > </artifactId > <version > </version > </extension > </extensions > <defaultGoal > </defaultGoal > <resources > <resource > <targetPath > </targetPath > <filtering > </filtering > <directory > </directory > <includes > <include > </include > </includes > <excludes > <exclude > </exclude > </excludes > </resource > </resources > <testResources > <testResource > <targetPath > </targetPath > <filtering > </filtering > <directory > </directory > <includes > <include > </include > </includes > <excludes > <exclude > </exclude > </excludes > </testResource > </testResources > <directory > </directory > <finalName > </finalName > <filters > </filters > <pluginManagement > <plugins > <plugin > <groupId > </groupId > <artifactId > </artifactId > <version > </version > <extensions > true/false</extensions > <executions > <execution > <id > </id > <phase > </phase > <goals > </goals > <inherited > true/false</inherited > <configuration > </configuration > </execution > </executions > <dependencies > <dependency > </dependency > </dependencies > <inherited > true/false</inherited > <configuration > </configuration > </plugin > </plugins > </pluginManagement > <plugins > <plugin > <groupId > </groupId > <artifactId > </artifactId > <version > </version > <extensions > true/false</extensions > <executions > <execution > <id > </id > <phase > </phase > <goals > </goals > <inherited > true/false</inherited > <configuration > </configuration > </execution > </executions > <dependencies > <dependency > </dependency > </dependencies > <inherited > true/false</inherited > <configuration > </configuration > </plugin > </plugins > </build > <profiles > <profile > <id > </id > <activation > <activeByDefault > true/false</activeByDefault > <jdk > jdk版本,如:1.7</jdk > <os > <name > Windows XP </name > <family > Windows </family > <arch > x86 </arch > <version > 5.1.2600 </version > </os > <property > <name > mavenVersion </name > <value > 2.0.3 </value > </property > <file > <exists > /usr/local/hudson/hudson-home/jobs/maven-guide-zh-to-production/workspace/ </exists > <missing > /usr/local/hudson/hudson-home/jobs/maven-guide-zh-to-production/workspace/ </missing > </file > </activation > <build > <defaultGoal /> <resources > <resource > <targetPath > </targetPath > <filtering > </filtering > <directory > </directory > <includes > <include > </include > </includes > <excludes > <exclude > </exclude > </excludes > </resource > </resources > <testResources > <testResource > <targetPath > </targetPath > <filtering > </filtering > <directory > </directory > <includes > <include > </include > </includes > <excludes > <exclude > </exclude > </excludes > </testResource > </testResources > <directory > </directory > <finalName > </finalName > <filters > </filters > <pluginManagement > <plugins > <plugin > <groupId > </groupId > <artifactId > </artifactId > <version > </version > <extensions > true/false</extensions > <executions > <execution > <id > </id > <phase > </phase > <goals > </goals > <inherited > true/false</inherited > <configuration > </configuration > </execution > </executions > <dependencies > <dependency > </dependency > </dependencies > <goals > </goals > <inherited > true/false</inherited > <configuration > </configuration > </plugin > </plugins > </pluginManagement > <plugins > <plugin > <groupId > </groupId > <artifactId > </artifactId > <version > </version > <extensions > true/false</extensions > <executions > <execution > <id > </id > <phase > </phase > <goals > </goals > <inherited > true/false</inherited > <configuration > </configuration > </execution > </executions > <dependencies > <dependency > </dependency > </dependencies > <goals > </goals > <inherited > true/false</inherited > <configuration > </configuration > </plugin > </plugins > </build > <modules > <module > </module > </modules > <repositories > <repository > <releases > <enabled > <enabled > <updatePolicy > </updatePolicy > <checksumPolicy > </checksumPolicy > </releases > <snapshots > <enabled > <enabled > <updatePolicy > </updatePolicy > <checksumPolicy > </checksumPolicy > </snapshots > <id > </id > <name > </name > <url > </url > <layout > </layout > </repository > </repositories > <pluginRepositories > <pluginRepository > <releases > <enabled > <enabled > <updatePolicy > </updatePolicy > <checksumPolicy > </checksumPolicy > </releases > <snapshots > <enabled > <enabled > <updatePolicy > </updatePolicy > <checksumPolicy > </checksumPolicy > </snapshots > <id > </id > <name > </name > <url > </url > <layout > </layout > </pluginRepository > </pluginRepositories > <dependencies > <dependency > </dependency > </dependencies > <reports > </reports > <reporting > </reporting > <dependencyManagement > <dependencies > <dependency > </dependency > </dependencies > </dependencyManagement > <distributionManagement > </distributionManagement > <properties /> </profile > </profiles > <modules > <module > </module > </modules > <repositories > <repository > <releases > <enabled > <enabled > <updatePolicy > </updatePolicy > <checksumPolicy > </checksumPolicy > </releases > <snapshots > <enabled > <enabled > <updatePolicy > </updatePolicy > <checksumPolicy > </checksumPolicy > </snapshots > <id > banseon-repository-proxy </id > <name > banseon-repository-proxy </name > <url > http://192.168.1.169:9999/repository/ </url > <layout > default </layout > </repository > </repositories > <pluginRepositories > <pluginRepository > </pluginRepository > </pluginRepositories > <dependencies > <dependency > <groupId > org.apache.maven </groupId > <artifactId > maven-artifact </artifactId > <version > 3.8.1 </version > <type > jar </type > <classifier > </classifier > <scope > test </scope > <systemPath > </systemPath > <exclusions > <exclusion > <artifactId > spring-core </artifactId > <groupId > org.springframework </groupId > </exclusion > </exclusions > <optional > true </optional > </dependency > </dependencies > <reports > </reports > <reporting > <excludeDefaults /> <outputDirectory /> <plugins > <plugin > <groupId > </groupId > <artifactId > </artifactId > <version > </version > <inherited > true/false</inherited > <configuration > </configuration > <reportSets > <reportSet > <id > </id > <configuration > </configuration > <inherited > true/false</inherited > <reports > </reports > </reportSet > </reportSets > </plugin > </plugins > </reporting > <dependencyManagement > <dependencies > <dependency > </dependency > </dependencies > </dependencyManagement > <distributionManagement > <repository > <uniqueVersion /> <id > banseon-maven2 </id > <name > banseon maven2 </name > <url > file://${basedir}/target/deploy </url > <layout > </layout > </repository > <snapshotRepository > <uniqueVersion /> <id > banseon-maven2 </id > <name > Banseon-maven2 Snapshot Repository </name > <url > scp://svn.baidu.com/banseon:/usr/local/maven-snapshot </url > <layout > </layout > </snapshotRepository > <site > <id > banseon-site </id > <name > business api website </name > <url > scp://svn.baidu.com/banseon:/var/www/localhost/banseon-web </url > </site > <downloadUrl /> <relocation > <groupId > </groupId > <artifactId > </artifactId > <version > </version > <message > </message > </relocation > <status > </status > </distributionManagement > <properties > <name > value</name > </properties > </project >
基本配置parent和继承结构 Maven项目的继承 Maven项目之间不仅存在多模块的聚合关系,而且Maven项目之间还可以存在相互继承的关系。
Maven项目之间的继承关系通过表示,在子Maven项目的POM中配置示例如下:
1 2 3 4 5 6 <parent > <groupId > com.mycompany.cat</groupId > <artifactId > cat-bundle</artifactId > <version > 2.0</version > <relativePath > ../cat-bundle</relativePath > </parent >
说明:给出被继承的父项目的具体信息。
其中的relativePath给出父项目相对于子项目的路径,这样在构件子项目时首先从该相对路径查找父项目,如果没有才会从本地库或进而远程库中查找父项目。
子项目能够继承父项目的配置 1 2 3 4 5 6 7 - dependencies - developers - contributors - plugin lists - reports lists - plugin executions with matching ids - plugin configuration
Maven的Super POM 类似于Java中的java.lang.Object类,所有Java类都继承自该类。在Maven中也存在一个特殊的POM,被称为Super POM。任何Maven项目的POM都继承自Super POM。
在Super POM中,设置如下:
1 2 3 4 5 - Maven的central库 - Maven的central插件库 - build的基本参数和4个插件(maven-antrun-plugin、maven-assembly-plugin、maven-dependency-plugin和maven-release-plugin) - reporting的基本目录 - 一个profile(id=release-profile)
配置build 在Maven的pom.xml文件中,存在如下两种:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 <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 https://maven.apache.org/xsd/maven-4.0.0.xsd" > ... <build > ...</build > <profiles > <profile > <build > ...</build > </profile > </profiles > </project >
一种被称为Project Build,即是的直接子元素。另一种被称为Profile Build,即是的直接子元素。
Profile Build包含了基本的build元素,而Project Build还包含两个特殊的元素,即各种<…Directory>和。
Profile Build和Project Build共用的基本build元素
example:
1 2 3 4 5 6 <build > <defaultGoal > install</defaultGoal > <directory > ${basedir}/target</directory > <finalName > ${artifactId}-${version}</finalName > ... </build >
说明:
1 2 3 - defaultGoal,执行构建时默认的goal或phase,如jar:jar或者package等 - directory,构建的结果所在的路径,默认为${basedir}/target目录 - finalName,构建的最终结果的名字,该名字可能在其他plugin中被改变
resources: 资源往往不是代码,无需编译,而是一些properties或XML配置文件,构建过程中会往往会将资源文件从源路径复制到指定的目标路径。
给出各个资源在Maven项目中的具体路径。示例如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 <build > ... <filters > <filter > filters/filter1.properties</filter > </filters > <resources > <resource > <targetPath > META-INF/plexus</targetPath > <filtering > false</filtering > <directory > ${basedir}/src/main/plexus</directory > <includes > <include > configuration.xml</include > </includes > <excludes > <exclude > **/*.properties</exclude > </excludes > </resource > </resources > <testResources > ... </testResources > ... </build >
说明:
1 2 3 4 5 6 7 8 - resources,build过程中涉及的资源文件 - targetPath,资源文件的目标路径 - filtering,构建过程中是否对资源进行过滤,默认false - directory,资源文件的路径,默认位于${basedir}/src/main/resources/目录下 - includes,一组文件名的匹配模式,被匹配的资源文件将被构建过程处理 - excludes,一组文件名的匹配模式,被匹配的资源文件将被构建过程忽略。同时被includes和excludes匹配的资源文件,将被忽略。 - filters,给出对资源文件进行过滤的属性文件的路径,默认位于${basedir}/src/main/filters/目录下。属性文件中定义若干键值对。在构建过程中,对于资源文件中出现的变量(键),将使用属性文件中该键对应的值替换。 - testResources,test过程中涉及的资源文件,默认位于${basedir}/src/test/resources/目录下。这里的资源文件不会被构建到目标构件中
plugins: 给出构建过程中所用到的插件。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <build > ... <plugins > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-jar-plugin</artifactId > <version > 2.6</version > <extensions > false</extensions > <inherited > true</inherited > <configuration > <classifier > test</classifier > </configuration > <dependencies > ...</dependencies > <executions > ...</executions > </plugin > </plugins > </build >
说明:
1 2 3 4 5 6 7 8 9 10 11 12 13 - groupId - artifactId - version - extensions,是否加载该插件的扩展,默认false - inherited,该插件的configuration中的配置是否可以被(继承该POM的其他Maven项目)继承,默认true - configuration,该插件所需要的特殊配置,在父子项目之间可以覆盖或合并 - dependencies,该插件所特有的依赖类库 - executions,该插件的某个goal(一个插件中可能包含多个goal)的执行方式。一个execution有如下设置: - id,唯一标识 - goals,要执行的插件的goal(可以有多个),如<goal>run</goal> - phase,插件的goal要嵌入到Maven的phase中执行,如verify - inherited,该execution是否可被子项目继承 - configuration,该execution的其他配置参数
pluginManagement: 1 在<build>中,<pluginManagement>与<plugins>并列,两者之间的关系类似于<dependencyManagement>与<dependencies>之间的关系。<pluginManagement>中也配置<plugin>,其配置参数与<plugins>中的<plugin>完全一致。只是,<pluginManagement>往往出现在父项目中,其中配置的<plugin>往往通用于子项目。子项目中只要在<plugins>中以<plugin>声明该插件,该插件的具体配置参数则继承自父项目中<pluginManagement>对该插件的配置,从而避免在子项目中进行重复配置。
Project Build特有的<…Directory>
往往配置在父项目中,供所有父子项目使用。示例如下:
1 2 3 4 5 6 7 8 9 <build > <sourceDirectory > ${basedir}/src/main/java</sourceDirectory > <scriptSourceDirectory > ${basedir}/src/main/scripts</scriptSourceDirectory > <testSourceDirectory > ${basedir}/src/test/java</testSourceDirectory > <outputDirectory > ${basedir}/target/classes</outputDirectory > <testOutputDirectory > ${basedir}/target/test-classes</testOutputDirectory > ... </build > </project >
目录可以使用绝对路径,如示例所示。如果使用相对路径,则所有的相对路径都是在${basedir}目录下。
Project Build特有的extensions
1 2 3 <extensions>是执行构建过程中可能用到的其他工具,在执行构建的过程中被加入到classpath中。 也可以通过<extensions>激活构建插件,从而改变构建的过程。 通常,通过<extensions>给出通用插件的一个具体实现,用于构建过程。
的使用示例如下:
1 2 3 4 5 6 7 8 9 10 11 12 <build > ... <extensions > <extension > <groupId > org.apache.maven.wagon</groupId > <artifactId > wagon-ftp</artifactId > <version > 1.0-alpha-3</version > </extension > </extensions > ... </build > </project >