现在真的空,能不能给我点任务?
关于Maven Apache Maven发布于2004年。目的是解决码农使用Ant所带来的一些问题。
Maven作为Java开发者最常用的构建工具之一,就相当于前端的npm和yarn,现在任何项目自动化对团队来说是非常普遍和重要的。大多数Java开发者对Maven来说是比较熟悉的了,因为在Spring框架覆盖几乎整个Java后端开发的环境里,很多时候复杂、晦涩的配置也有大量的共性,所以基本上可以演变成一部分人完成,几代人模仿使用。
虽然没用过Gradle,但是各大论坛的反映都是比Maven友好,构建越复杂Gradle的优势越明显,貌似Android开发基本都是使用Gradle,以后Gradle可能就是主流了呢。
Springboot提倡干掉XML,用Bean
配置类注入的方式,而Maven的独立核心配置文件pom.xml
依然是采用XML语言作为编写构建配置的文件格式,不过好在Maven中的pom.xml
的还是比较好用的,除了<build>插件</build>
会麻烦点。
项目配置和标签解释 Apache Maven官方文档 :https://maven.apache.org/pom.html
我对于Maven的了解,也就停留在知其然而不知其所以然,连很多标签的含义都没有完全熟悉,之前travis-ci 持续集成的过程中就因为Maven打包跳过javadoc
环节出了问题而半天不清楚问题的源头在哪。 不同类型的项目在初始化创建的过程中生成的pom.xml
可能略有不同,下面拿实际的例子来解释。
生命周期&基本命令
一共三套生命周期,每套生命周期都包含一些命令:
clean :清理项目
clean :这个应该很熟悉,清理上一次构建生成的文件,在Intellij IDEA就相当于target
(单个module
编译后)
default :构建项目
compile :编译项目主源码,将src/main/resources
目录的内容经过处理后,复制到项目输出的主classpath
目录中。
test :这个也应该很熟悉,使用单元测试框架运行测试,测试代码不会被打包或部署。
package :将编译好的代码,打包成可发布的格式。
install :发布到本地仓库
deploy :发布到远程仓库
verify :运行任何检查,验证包是否有效且达到质量标准。
validate :验证工程是否正确,所有需要的资源是否OK。
site :建立和发布项目
package
和install
命令的看起来好像实现的功能都一样,都是编译打包,但是package
命令其实进行了打包步骤,而install
命令同时把打好的可执行包布署到本地Maven仓库,但没有布署到远程Maven私服仓库。假设B项目依赖A项目,A项目仅仅是package
将发布的包发布在target下,这时候编译目标B项目,就会GG报找不到A项目依赖的问题~所以要先把A项目install发布在本地仓库后,即可编译(compile)、打包、部署。如下图该jar是我执行install
命令后在本地仓库部署的结果。
自写的jar或者收费产品添加到本地仓库:mvn install:install-file -Dfile=${jar包的位置} -DgroupId=${设置groupId} -DartifactId=${设置artifactId} -Dversion=${设置version} -Dpackaging=jar
。 比如ojdbc6.jar
添加到本地仓库。
1 2 3 4 5 <dependency > <groupId > com.oracle.ojdbc_6</groupId > <artifactId > com.oracle.ojdbc_6</artifactId > <version > 1.0</version > </dependency >
其他还有一些命令比较好用,比如mvn dependency:tree
:打印依赖目录树。
依赖冲突 项目中的多jar同时引用了相同的jar时,如果以来的版本不一致就可能产生依赖冲突。
由于Maven采用短路优先
的策略,假如project-->A-->B-->C(1.0)
,project-->D-->C(1.1)
那么实际最终依赖C的版本是1.1,因为他的依赖路径最短,那如果一样路径的情况下,则是声明优先
,谁先被声明就优先被使用。一般来说,只要不是太久太老的依赖,出现这个问题还是好解决的,可以通过锁定版本一致,或者排除某个依赖。太旧的依赖容易造成版本一致却引起其他依赖无法正常工作。
为了营造这个冲突效果我特地试验了两个依赖,项目引入了5.1.8.RELEASE
的spring-webmvc
,同时引入了5.1.1.RELEASE
的spring-security-web
。可以看到spring-security-web
的依赖关系是5.1.1.RELEASE
的spring-security-core
,并提示omitted for duplicate
,因为spring-security-web
的依赖路径较长,根据短路优先
原则,所有相同的依赖被重写成了5.1.8.RELEASE
版本。
依赖继承 当一个项目比较大的时候,通常会拆分成多个module
,多个module
同时运行就称为聚合。
1 2 3 4 5 6 7 <modules > <module > core</module > <module > framework</module > <module > market</module > <module > payment</module > <module > sender</module > </modules >
当这些被聚合的项目需要引入相同的jar时(这是很常见的事吧!),可以将这些jar写入父pom中,各个子项目继承该pom即可。
父pom :以下依赖将会被子pom继承~
1 2 3 4 5 6 7 8 9 <dependencyManagement > <dependencies > <dependency > <groupId > com.oracle.ojdbc_6</groupId > <artifactId > com.oracle.ojdbc_6</artifactId > <version > 1.0</version > </dependency > </dependencies > </dependencyManagement >
子pom :父pom的坐标
1 2 3 4 5 <parent > <groupId > 父pom所在项目的groupId</groupId > <artifactId > 父pom所在项目的artifactId</artifactId > <version > 父pom所在项目的版本号</version > </parent >
标签解释 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 <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 > cn.erhuowang</groupId > <artifactId > erhuowang-maven2</artifactId > <packaging > war</packaging > <version > 1.0-SNAPSHOT</version > <name > erhuo-maven</name > <url > http://erhuowang.cn</url > <description > A maven project to study maven.</description > <prerequisites > <maven /> </prerequisites > <issueManagement > <system > erhuowang</system > <url > http://erhuowang.cn</url > </issueManagement > <ciManagement > <system /> <url /> <notifiers > <notifier > <type /> <sendOnError /> <sendOnFailure /> <sendOnSuccess /> <sendOnWarning /> <address /> <configuration /> </notifier > </notifiers > </ciManagement > <inceptionYear /> <mailingLists > <mailingList > <name > Demo</name > <post > chaibozhou@163.com</post > <subscribe > chaibozhou@163.com</subscribe > <unsubscribe > chaibozhou@163.com</unsubscribe > <archive > chaibozhou@163.com</archive > </mailingList > </mailingLists > <developers > <developer > <id > HELLO WORLD</id > <name > chaimm</name > <email > chaibozhou@163.com</email > <url /> <roles > <role > Project Manager</role > <role > Architect</role > </roles > <organization > demo</organization > <organizationUrl > http://erhuowang.cn</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/erhuwoang/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.erhuowang.cn</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 >