概述 Maven: 一个用于自动化构建项目和管理项目依赖的工具自动化构建项目: 按照企业中主流的项目模板,创建完善的项目结构管理项目依赖: 配置式添加管理,自动下载和导入
Maven环境配置 Maven下载 Maven官网地址:http://maven.apache.org
点击Download
跳转Maven下载界面
Maven环境变量配置 下载最新版zip即可,将下载后的zip包解压到本地任意文件夹下 然后打开maven解压后生成的文件夹,进入到bin目录下,复制路径地址
如图所示,复制路径之后,右键我的电脑,点击属性 -> 高级系统设置 -> 环境变量 -> Path -> 新建 将复制的Maven路径黏贴到对应位置,点击确定关闭所有对话框
win+R快捷键,输入cmd
打开Windows10命令行,输入:mvn -version
注:一定要在保存环境变量后新打开的命令窗口输入,否则不生效;
Maven本地仓库配置 Maven下载jar包默认是下载到C盘用户目录下的.m2文件夹下的,会大量占用C盘空间 打开Maven文件夹下的conf
文件夹,找到settings.xml
文件,将其打开,在settings标签内增加localRepository
标签,指定jar包下载位置(本地仓库位置):
1 2 3 4 5 6 7 8 9 10 11 <settings xmlns ="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation ="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" > <localRepository > D:\repository</localRepository > </settings >
Maven配置远程阿里云仓库 Maven默认远程仓库是在国外的,由于网络原因,有时会导致下载jar包特别慢或者下载失败或者下载残缺,从而引起一些奇奇怪怪的问题,可以通过配置更改远程仓库位置,指向国内阿里云仓库 在Maven文件夹下的conf
文件下的settings.xml
文件中mirrors
标签中做如下配置即可
1 2 3 4 5 6 7 8 <mirrors > <mirror > <id > nexus-aliyun</id > <name > Nexus aliyun</name > <url > http://maven.aliyun.com/nexus/content/groups/public/</url > <mirrorOf > central</mirrorOf > </mirror > </mirrors >
Maven依赖添加 使用工具创建Maven项目后,会在目录下有一个pom.xml文件,只需要在文件中的dependencies
标签中增加对应的依赖引入,maven即可完成对应的关联 Maven依赖查询网址:https://mvnrepository.com
Maven基础知识讲解 Maven仓库
远程仓库/中央仓库
maven默认远程仓库是在国外(http://repo1.maven.org/maven2/),由于众所周知的原因,一般都会将远程仓库配置为国内源,具体配置方式如上所示。
本地仓库
maven默认的本地仓库配置为:${user.home}/.m2/repository;Windows电脑默认就是在C盘用户目录中.m2
文件夹下,如果C盘空间不是特别大的话,可以添加如下配置将本地仓库修改到其他盘:
1 <localRepository > D:\repository</localRepository >
私有服务器
maven一般使用nexus
用来做私服,具体搭建方式自行百度;搭建好后将私服作为远程仓库配置即可连接。
Maven常用命令
命令
描述
mvn archetype:create -DarchetypeArtifactId=maven-archetype-quickstart -DgroupId=com.ryanote -Dartifact=common
maven新建项目命令,指定相关设置信息
mvn archetype:generate
maven创建项目命令,之后根据提示设置相关项目信息
mvn compile
编译源代码
mvn test-compile
编译测试代码
mvn test
运行测试
mvn site
生产site
mvn package
打包
mvn install
将jar/war包安装到本地仓库
mvn install -DMaven.test,skip=true
执行mvn install命令,跳过测试
mvn install:install-file
安装jar包文件到本地仓库
mvn clean
清除生产的项目
mvn eclipse:eclipse
生产eclipse项目
mvn idea:idea
生产idea项目
mvn deploy
上传私服
mvn deploy:deploy-file
上传jar文件到私服
mvn versions:set -DnewVersion=xx.xx
maven更改版本号
mvn versions:commit
maven提交版本号更改
mvn versions:revert
maven回滚版本号更改
Maven生命周期
maven拥有三套独立的生命周期,他们分别是clean、default和site。 clean生命周期的目的是清理项目; default生命周期的目的是构建项目; site生周期的目的是建立项目站点。
clean生命周期 clean生周期的目的是清理项目,它包括以下三个阶段。
名称
描述
pre-clean
执行清理前需要完成的工作
clean
清理上一次构建过程中生产的文件,如编译后的class文件
post-clean
执行清理后需要完成的工作
执行maven命令mvn clean
其实就是运行clean阶段,需要注意的是maven在一个生命周期运行某个阶段的时候,他之前的所有阶段都会被运行
, 也就是说执行mvn clean
就是执行mvn pre-clean clean
,如果执行mvn post-clean
那么pre-clean
和clean
也会被运行。
default生命周期 default生命周期定义了构建项目时所需要执行步骤,它是所有生命周期中最核心部分,包含的阶段如下:
名称
说明
validate
验证项目结构是否正常,必要的配置文件是否存在
initialize
做构建前的初始化操作,比如初始化参数、创建必要目录等
generate-sources
产生在编译过程中需要的员代码
process-sources
处理源代码,比如过滤值
generate-resources
生产主代码中的资源在classpath中的包
process-resources
将资源文件复制到classpath的对应包中
compile
编译项目中的源代码
process-classes
生产编译过程中生成的文件
generate-test-sources
生产编译过程中测试相关的代码
process-test-sources
处理测试代码
generate-test-resources
生产测试中资源在classpath中的包
process-test-resources
将测试资源复制到classpath中
test-compile
编译测试代码
process-test-classes
生产编译测试代码过程的文件
test
运行测试案例
prepare-package
处理打包前需要初始化的准备工作
package
将编译后的class和资源打包成压缩包,如jar
pre-integration-test
做好集成测试前的准备工作,比如集成环境的参数设置
integration-test
集成测试
post-integration-test
完成集成测试后的收尾工作,比如清理集成环境的值
verify
检测测试后的包是否完好
install
将打包的组件以构件的形式,安装到本地依赖仓库中,以便共享给本地的其他项目
deploy
运行集成的发布环境,将测试后的最终包以构件的方式发布到远程仓库中,方便所有程序员共享
最常用的阶段一般为:validate、compile、test、package、verify、install、site、deploy。
详细介绍可以查看:http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
Maven POM 标签大全详解 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 <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.0http://maven.apache.org/maven-v4_0_0.xsd" > <parent > <artifactId /> <groupId /> <version /> <relativePath /> </parent > <modelVersion > 4.0.0</modelVersion > <groupId > asia.banseon</groupId > <artifactId > banseon-maven2</artifactId > <packaging > jar</packaging > <version > 1.0-SNAPSHOT</version > <name > banseon-maven</name > <url > http://www.baidu.com/banseon</url > <description > A maven project to study maven.</description > <prerequisites > <maven /> </prerequisites > <issueManagement > <system > jira</system > <url > http://jira.baidu.com/banseon</url > </issueManagement > <ciManagement > <system /> <url /> <notifiers > <notifier > <type /> <sendOnError /> <sendOnFailure /> <sendOnSuccess /> <sendOnWarning /> <address /> <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 /> <roles > <role > Project Manager</role > <role > Architect</role > </roles > <organization > demo</organization > <organizationUrl > http://hi.baidu.com/banseon</organizationUrl > <properties > <dept > No</dept > </properties > <timezone > -5</timezone > </developer > </developers > <contributors > <contributor > <name /> <email /> <url /> <organization /> <organizationUrl /> <roles /> <timezone /> <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 /> <url > http://svn.baidu.com/banseon</url > </scm > <organization > <name > demo</name > <url > http://www.baidu.com/banseon</url > </organization > <build > <sourceDirectory /> <scriptSourceDirectory /> <testSourceDirectory /> <outputDirectory /> <testOutputDirectory /> <extensions > <extension > <groupId /> <artifactId /> <version /> </extension > </extensions > <defaultGoal /> <resources > <resource > <targetPath /> <filtering /> <directory /> <includes /> <excludes /> </resource > </resources > <testResources > <testResource > <targetPath /> <filtering /> <directory /> <includes /> <excludes /> </testResource > </testResources > <directory /> <finalName /> <filters /> <pluginManagement > <plugins > <plugin > <groupId /> <artifactId /> <version /> <extensions /> <executions > <execution > <id /> <phase /> <goals /> <inherited /> <configuration /> </execution > </executions > <dependencies > <dependency > ...... </dependency > </dependencies > <inherited /> <configuration /> </plugin > </plugins > </pluginManagement > <plugins > <plugin > <groupId /> <artifactId /> <version /> <extensions /> <executions > <execution > <id /> <phase /> <goals /> <inherited /> <configuration /> </execution > </executions > <dependencies > <dependency > ...... </dependency > </dependencies > <goals /> <inherited /> <configuration /> </plugin > </plugins > </build > <profiles > <profile > <id /> <activation > <activeByDefault /> <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 /> <filtering /> <directory /> <includes /> <excludes /> </resource > </resources > <testResources > <testResource > <targetPath /> <filtering /> <directory /> <includes /> <excludes /> </testResource > </testResources > <directory /> <finalName /> <filters /> <pluginManagement > <plugins > <plugin > <groupId /> <artifactId /> <version /> <extensions /> <executions > <execution > <id /> <phase /> <goals /> <inherited /> <configuration /> </execution > </executions > <dependencies > <dependency > ...... </dependency > </dependencies > <goals /> <inherited /> <configuration /> </plugin > </plugins > </pluginManagement > <plugins > <plugin > <groupId /> <artifactId /> <version /> <extensions /> <executions > <execution > <id /> <phase /> <goals /> <inherited /> <configuration /> </execution > </executions > <dependencies > <dependency > ...... </dependency > </dependencies > <goals /> <inherited /> <configuration /> </plugin > </plugins > </build > <modules /> <repositories > <repository > <releases > <enabled /> <updatePolicy /> <checksumPolicy /> </releases > <snapshots > <enabled /> <updatePolicy /> <checksumPolicy /> </snapshots > <id /> <name /> <url /> <layout /> </repository > </repositories > <pluginRepositories > <pluginRepository > <releases > <enabled /> <updatePolicy /> <checksumPolicy /> </releases > <snapshots > <enabled /> <updatePolicy /> <checksumPolicy /> </snapshots > <id /> <name /> <url /> <layout /> </pluginRepository > </pluginRepositories > <dependencies > <dependency > ...... </dependency > </dependencies > <reports /> <reporting > ...... </reporting > <dependencyManagement > <dependencies > <dependency > ...... </dependency > </dependencies > </dependencyManagement > <distributionManagement > ...... </distributionManagement > <properties /> </profile > </profiles > <modules /> <repositories > <repository > <releases > <enabled /> <updatePolicy /> <checksumPolicy /> </releases > <snapshots > <enabled /> <updatePolicy /> <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 /> <artifactId /> <version /> <inherited /> <configuration /> <reportSets > <reportSet > <id /> <configuration /> <inherited /> <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 /> </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 /> </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 /> <artifactId /> <version /> <message /> </relocation > <status /> </distributionManagement > <properties /> </project >