Maven项目的生命周期

参考文章 :https://stackoverflow.com/questions/16602017/how-are-mvn-clean-package-and-mvn-clean-install-different

These are the default life cycle phases in maven

  • validate - validate the project is correct and all necessary information is available
  • compile - compile the source code of the project
  • test - test the compiled source code using a suitable unit testing framework. These tests should not require the code be packaged or deployed
  • package - take the compiled code and package it in its distributable format, such as a JAR.
  • verify - run any checks on results of integration tests to ensure quality criteria are met
  • install - install the package into the local repository, for use as a dependency in other projects locally
  • deploy - done in the build environment, copies the final package to the remote repository for sharing with other developers and projects.


    生命周期阶段与插件的绑定关系.png

一个maven项目完整的生命周期路径

validate >> compile >> test (optional) >> package >> verify >> install >> deploy

  • maven package的生命周期路径

validate >> compile >> test (optional) >> package

  • maven install的生命周期路径

validate >> compile >> test (optional) >> package >> verify >> install

  • maven clean

移除之前版本编译的文件,也就是target目录下的所有文件。

Maven: Failed to read artifact descriptor

项目中遇到一个问题,子项目使用mvn compile的时候出现Failed to read artifact descriptor,使用-e参数查看详细日志,看到是父项目没有安装。切换到父项目目录,使用mvn clean install即可。

Maven的打包类型

参考文章:https://www.baeldung.com/maven-packaging-types

最近在处理项目的时候遇到了两个问题,一个是在执行main方法的时候找不到resource文件,经过查看编译的target的目录中也没有包含resource相关文件,后经排查是把项目的打包类型声明成了pom,而pom主要用来聚合项目的依赖,资源文件并不会编译打包(参考:https://intellij-support.jetbrains.com/hc/en-us/community/posts/360003420219-Why-can-not-build-resources-),后来把项目改成jar即可。第二个问题是把一个项目的api拆分出来的时候(把相关的服务接口通过feign的方式整合到api项目中,这样其他服务只需要引入api这个包即可,不需要引入其实现服务)把项目错误的声明成了pom,导致把api服务集成到其他服务的时候报错。两个问题都是没有正确的理解pom和jar之间的区别。

  • pom是最简单的一种打包方式,主要用来做依赖聚合,父项目提供依赖传递。一个父项目允许你在不同的pom项目之间定义继承关系。因为它没有resource需要处理也不需要编译代码,所以它不会生成任何可执行文件。它的声明周期只有install->deploy
  • jar是最流行的打包方式,也是默认的打包方式,它在打包的时候会执行完整的声明周期,包含java code, resource, metadata files
  • 其他打包方式类似jar,比如war...

Maven常用运维指令

参考文章:https://www.cnblogs.com/hiver/p/7850954.htmlhttps://blog.51cto.com/u_330478/3625582
反应堆(Reactor)是指所有模块组成的一个构建结构

  • am(--also-make):安装其需要的依赖
  • amd(-also-make-dependents):同时构建依赖与所列模块的模块
  • pl(--projects):构建指定的模块,模块间用逗号分隔
  • rf(-resume-from):从指定的模块构建反应堆
    比如现在有个项目envctl-exporter依赖通用模块common-db,父模块为demo
# 输出调试日志
mvn install -e -X
# 语法格式
mvn clean package -Dmaven.test.skip=true -pl ${group_id}:${task_name} -am
# demo,common-db,envctl-exporter都会构建
mvn clean package -Dmaven.test.skip=true -pl envctl-exporter -am
# common-db,envctl-exporter都会构建
mvn clean package -Dmaven.test.skip=true -pl common-db -amd
# 只会构建envctl-exporter
mvn clean package -Dmaven.test.skip=true -pl common-db -amd -rf envctl-exporter

Maven fails to find local artifact

1c4c67f6335cc57192b53ab81b37437.png

Maven插件

  • Maven插件帮助指令
# 输出插件maven-source-plugin的帮助文档
mvn help:describe -Dplugin=org.apache.maven.plugins:maven-source-plugin:2.1.1 -Ddetail
# 输出插件maven-help-plugin的帮助文档
mvn help:describe -Dplugin=org.apache.maven.plugins:maven-help-plugin
  • 配置插件执行目标,创建项目的源码jar包
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.1.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <phase>verify</phase>
                        <goals>
                            <!--配置插件执行目标,创建项目的源码jar包-->
                            <goal>jar-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

指定jar编译版本

          <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>8</source>
                    <target>8</target>
                </configuration>
            </plugin>

spring boot maven插件
通过maven启动spring boot项目:mvn spring-boot:run -Dapp.profiles=test

<!--https://docs.spring.io/spring-boot/docs/current/maven-plugin/reference/htmlsingle/-->
           <plugin>
              <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>

Maven私服

# 使用docker安装
# 创建宿主机数据目录
mkdir /usr/local/nexus/data
# 赋予数据目录全部权限
chmod 777 /usr/local/nexus/data
# docker安装
docker run -d --name nexus3 -p 8081:8081 --restart always -v /usr/local/nexus/data:/nexus-data sonatype/nexus3

maven仓库类型

  • group:多个仓库的集合,比如maven-public集成了maven-releases,maven-snapshots,maven-central;通常在配置镜像时指定该私服链接;
      <mirror>
            <id>nexus</id>
            <mirrorOf>*</mirrorOf>
            <name>双胞胎Nexus私服</name>
            <url>http://172.19.7.199:8081/repository/maven-public/</url>
        </mirror>
  • proxy:代理仓库,依赖请求转发到代理服务器下载,比如把中央仓库代理到阿里云


    中央仓库代理.png
  • hosted: 宿主仓库,也就是本地仓库,存储本地依赖(包含本地配置推送的和第三方库),比如:maven-releases(发布版本),maven-snapshots(快照版本)
<!--分发到私服配置,release版本分发到maven-releases仓库;snapshot版本分发到maven-snapshots仓库-->
    <distributionManagement>
        <repository>
            <id>nexus-releases</id>
            <name>Nexus Release Repository</name>
            <url>http://172.19.7.199:8081/repository/maven-releases/</url>
        </repository>
        <snapshotRepository>
            <id>nexus-snapshots</id>
            <name>Nexus Snapshots Repository</name>
            <url>http://172.19.7.199:8081/repository/maven-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,743评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,296评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,285评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,485评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,581评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,821评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,960评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,719评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,186评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,516评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,650评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,329评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,936评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,757评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,991评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,370评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,527评论 2 349

推荐阅读更多精彩内容