Maven - 统一构建规范:Maven 插件管理最佳实践

文章目录

  • Available Plugins
  • 开源项目中的使用
  • 插件介绍
    • maven-jar-plugin
    • maven-assembly-plugin
    • maven-shade-plugin
      • Shade 插件 - 标签
        • artifactSet
        • relocations
        • filters
      • 完整配置

Maven - 统一构建规范:Maven 插件管理最佳实践_第1张图片


Available Plugins

https://maven.apache.org/plugins/index.html

Maven 是一个开源的软件构建工具,它支持多种插件,用于帮助开发人员更方便地管理构建过程中所需的各种资源。以下是一些常用的 Maven 插件:

  1. Maven-clean-plugin:用于清除项目目录中的垃圾文件和临时文件。
  2. Maven-compile-plugin:用于编译项目源代码,生成目标代码。
  3. Maven-dependency-plugin:用于管理项目依赖关系,可以自动下载依赖库,并解决依赖冲突。
  4. Maven-jar-plugin:用于打包项目,生成 JAR 文件。
  5. Maven-javadoc-plugin:用于生成项目 Javadoc 文档。
  6. Maven-install-plugin:用于安装项目依赖库,可以将依赖库安装到本地仓库中。
  7. Maven-deploy-plugin:用于部署项目,可以将项目打包成可执行的包,并上传到远程仓库中。
  8. Maven-site-plugin:用于生成项目网站,可以自动生成 HTML 文档,并上传到远程仓库中。
  9. Maven-scm-plugin:用于管理项目版本,可以与版本控制系统集成,实现代码的版本控制。
  10. Maven-release-plugin:用于发布项目,可以将项目打包成可执行的包,并上传到远程仓库中,同时发布版本更新信息。
    Maven - 统一构建规范:Maven 插件管理最佳实践_第2张图片

这些插件可以帮助开发人员更方便地管理构建过程中所需的各种资源,提高软件构建的效率和质量。


开源项目中的使用

我们来看下nacos这个开源项目的plugin是如何使用的。 不得不说还是非常丰富的 。
Maven - 统一构建规范:Maven 插件管理最佳实践_第3张图片

   
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojogroupId>
                <artifactId>versions-maven-pluginartifactId>
                <version>${versions-maven-plugin.version}version>
            plugin>
            <plugin>
                <groupId>com.github.vongoslinggroupId>
                <artifactId>dependency-mediator-maven-pluginartifactId>
                <version>${dependency-mediator-maven-plugin.version}version>
            plugin>
            <plugin>
                <groupId>org.codehaus.mojogroupId>
                <artifactId>clirr-maven-pluginartifactId>
                <version>${clirr-maven-plugin.version}version>
            plugin>
            <plugin>
                <artifactId>maven-enforcer-pluginartifactId>
                <version>${maven-enforcer-plugin.version}version>
                <executions>
                    <execution>
                        <id>enforce-ban-circular-dependenciesid>
                        <goals>
                            <goal>enforcegoal>
                        goals>
                    execution>
                executions>
                <configuration>
                    <rules>
                        <banCircularDependencies/>
                    rules>
                    <fail>truefail>
                configuration>
                <dependencies>
                    <dependency>
                        <groupId>org.codehaus.mojogroupId>
                        <artifactId>extra-enforcer-rulesartifactId>
                        <version>${extra-enforcer-rules.version}version>
                    dependency>
                dependencies>
            plugin>
            <plugin>
                <artifactId>maven-compiler-pluginartifactId>
                <version>${maven-compiler-plugin.version}version>
                <configuration>
                    <source>${maven.compiler.source}source>
                    <target>${maven.compiler.target}target>
                    <compilerVersion>${maven.compiler.source}compilerVersion>
                    <showDeprecation>trueshowDeprecation>
                    <showWarnings>trueshowWarnings>
                configuration>
            plugin>
            <plugin>
                <artifactId>maven-javadoc-pluginartifactId>
                <version>${maven-javadoc-plugin.version}version>
                <configuration>
                    <charset>UTF-8charset>
                configuration>
                <executions>
                    <execution>
                        <id>attach-javadocsid>
                        <goals>
                            <goal>jargoal>
                        goals>
                    execution>
                executions>
            plugin>
            <plugin>
                <artifactId>maven-source-pluginartifactId>
                <version>${maven-source-plugin.version}version>
                <executions>
                    <execution>
                        <id>attach-sourcesid>
                        <goals>
                            <goal>jargoal>
                        goals>
                    execution>
                executions>
            plugin>
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-pmd-pluginartifactId>
                <version>${maven-pmd-plugin.version}version>
                <configuration>
                    <rulesets>
                        <ruleset>rulesets/java/ali-comment.xmlruleset>
                        <ruleset>rulesets/java/ali-concurrent.xmlruleset>
                        <ruleset>rulesets/java/ali-constant.xmlruleset>
                        <ruleset>rulesets/java/ali-exception.xmlruleset>
                        <ruleset>rulesets/java/ali-flowcontrol.xmlruleset>
                        <ruleset>rulesets/java/ali-naming.xmlruleset>
                        <ruleset>rulesets/java/ali-oop.xmlruleset>
                        <ruleset>rulesets/java/ali-orm.xmlruleset>
                        <ruleset>rulesets/java/ali-other.xmlruleset>
                        <ruleset>rulesets/java/ali-set.xmlruleset>
                    rulesets>
                    <printFailingErrors>trueprintFailingErrors>
                    <excludes>
                        <exclude>**/consistency/entity/*.javaexclude>
                        <exclude>**/istio/model/mcp/*.javaexclude>
                        <exclude>**/istio/model/naming/*.javaexclude>
                        <exclude>**/istio/model/*.javaexclude>
                        <exclude>**/api/grpc/auto/*.javaexclude>
                        <exclude>**/istio/mcp/**exclude>
                        <exclude>**/istio/networking/**exclude>
                        <exclude>**/google/protobuf/**exclude>
                    excludes>
                configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>checkgoal>
                        goals>
                    execution>
                executions>
                <dependencies>
                    <dependency>
                        <groupId>com.alibaba.p3cgroupId>
                        <artifactId>p3c-pmdartifactId>
                        <version>${p3c-pmd.version}version>
                    dependency>
                dependencies>
            plugin>
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-checkstyle-pluginartifactId>
                <version>${maven-checkstyle-plugin.version}version>
                <configuration>
                    <configLocation>style/NacosCheckStyle.xmlconfigLocation>
                    <includeTestSourceDirectory>trueincludeTestSourceDirectory>
                    <encoding>UTF-8encoding>
                    <consoleOutput>trueconsoleOutput>
                    <failsOnError>truefailsOnError>
                    <excludes>**/consistency/entity/**,**/nacos/test/**,**/api/grpc/auto/**,**/istio/**,**/protobuf/**excludes>
                configuration>
                <executions>
                    <execution>
                        <id>validateid>
                        <phase>validatephase>
                        <goals>
                            <goal>checkgoal>
                        goals>
                    execution>
                executions>
            plugin>
            <plugin>
                <groupId>org.apache.ratgroupId>
                <artifactId>apache-rat-pluginartifactId>
                <version>${apache-rat-plugin.version}version>
                <configuration>
                    <excludes>
                        <exclude>.editorconfigexclude>
                        <exclude>.travis.ymlexclude>
                        <exclude>CONTRIBUTING.mdexclude>
                        <exclude>CODE_OF_CONDUCT.mdexclude>
                        <exclude>CHANGELOG.mdexclude>
                        <exclude>style/codeStyle.mdexclude>
                        <exclude>REPORTING-BUGS.mdexclude>
                        <exclude>README.mdexclude>
                        <exclude>.github/**/*exclude>
                        <exclude>doc/*exclude>
                        <exclude>derby.logexclude>
                        <exclude>logs/*exclude>
                        <exclude>src/main/resources/static/**exclude>
                        <exclude>**/istio/model/**exclude>
                        <exclude>**/consistency/entity/**exclude>
                        <exclude>**/*.txtexclude>
                        <exclude>**/*.factoriesexclude>
                        <exclude>/console-ui/**exclude>
                        <exclude>**/gogo.protoexclude>
                        <exclude>**/any.protoexclude>
                    excludes>
                configuration>
                <executions>
                    <execution>
                        <phase>verifyphase>
                        <goals>
                            <goal>checkgoal>
                        goals>
                    execution>
                executions>
            plugin>
            <plugin>
                <artifactId>maven-resources-pluginartifactId>
                <version>${maven-resources-plugin.version}version>
                <configuration>
                    
                    <encoding>${project.build.sourceEncoding}encoding>
                configuration>
            plugin>
            <plugin>
                <groupId>org.eluder.coverallsgroupId>
                <artifactId>coveralls-maven-pluginartifactId>
                <version>${coveralls-maven-plugin.version}version>
            plugin>
            <plugin>
                <groupId>org.jacocogroupId>
                <artifactId>jacoco-maven-pluginartifactId>
                <version>${jacoco-maven-plugin.version}version>
                <executions>
                    <execution>
                        <id>default-prepare-agentid>
                        <goals>
                            <goal>prepare-agentgoal>
                        goals>
                        <configuration>
                            <destFile>${project.build.directory}/jacoco.execdestFile>
                        configuration>
                    execution>
                    <execution>
                        <id>default-prepare-agent-integrationid>
                        <phase>pre-integration-testphase>
                        <goals>
                            <goal>prepare-agent-integrationgoal>
                        goals>
                        <configuration>
                            <destFile>${project.build.directory}/jacoco-it.execdestFile>
                            <propertyName>failsafeArgLinepropertyName>
                        configuration>
                    execution>
                    <execution>
                        <id>default-reportid>
                        <goals>
                            <goal>reportgoal>
                        goals>
                    execution>
                    <execution>
                        <id>default-report-integrationid>
                        <goals>
                            <goal>report-integrationgoal>
                        goals>
                    execution>
                executions>
            plugin>
            <plugin>
                <artifactId>maven-surefire-pluginartifactId>
                <version>${maven-surefire-plugin.version}version>
            plugin>
            <plugin>
                <groupId>org.codehaus.mojogroupId>
                <artifactId>findbugs-maven-pluginartifactId>
                <version>${findbugs-maven-plugin.version}version>
            plugin>
            <plugin>
                <groupId>org.sonarsource.scanner.mavengroupId>
                <artifactId>sonar-maven-pluginartifactId>
                <version>${sonar-maven-plugin.version}version>
            plugin>
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-assembly-pluginartifactId>
                <version>${maven-assembly-plugin.version}version>
            plugin>
            <plugin>
                <groupId>org.codehaus.mojogroupId>
                <artifactId>flatten-maven-pluginartifactId>
                <version>${maven-flatten-version}version>
                <configuration>
                    <updatePomFile>trueupdatePomFile>
                    <flattenMode>resolveCiFriendliesOnlyflattenMode>
                    <pomElements>
                        <dependencies>expanddependencies>
                    pomElements>
                configuration>
                <executions>
                    <execution>
                        <id>flattenid>
                        <phase>process-resourcesphase>
                        <goals>
                            <goal>flattengoal>
                        goals>
                    execution>
                    <execution>
                        <id>flatten.cleanid>
                        <phase>cleanphase>
                        <goals>
                            <goal>cleangoal>
                        goals>
                    execution>
                executions>
            plugin>
        plugins>
    build>

插件介绍

maven-jar-plugin

https://maven.apache.org/plugins/maven-jar-plugin/

Maven - 统一构建规范:Maven 插件管理最佳实践_第4张图片

maven-jar-plugin 是 Maven 的一个插件,用于创建 JAR 文件。它可以将项目的源代码、依赖项和配置文件打包成一个 JAR 文件,以便在应用程序中使用。该插件使用 Apache Maven 的默认构建系统,因此可以使用 Maven 的所有功能,如依赖项管理、构建脚本等。

使用 maven-jar-plugin 的主要优点是可以轻松地创建 JAR 文件,而不必手动编写 Ant 脚本或使用其他工具。此外,该插件还支持一些高级功能,如资源过滤、代码混淆和 Javadoc 文档生成等。这些功能可以使 JAR 文件更加强大和易于使用。

maven-jar-plugin 通常与 Maven 的其他插件一起使用,如 maven-compiler-plugin 和 maven-resources-plugin,以构建复杂的应用程序。例如,可以使用 maven-jar-plugin 将编译后的源代码打包成 JAR 文件,并使用 maven-resources-plugin 将资源文件打包成 JAR 文件。

这些插件可以一起使用,以构建具有各种功能和依赖项的应用程序。

假设我们要创建一个名为my-project的 JAR 文件,其中包含项目中的源代码、依赖项和一些资源文件。我们可以使用 maven-jar-plugin 来完成这个任务。以下是一个具体的使用案例:

  1. 首先,在 Maven 项目中添加 maven-jar-plugin 插件。在pom.xml文件中的标签内添加以下内容:
<build>  
   <plugins>  
       <plugin>  
           <groupId>org.apache.maven.pluginsgroupId>  
           <artifactId>maven-jar-pluginartifactId>  
           <version>3.2version>  
           <executions>  
               <execution>  
                   <goals>  
                       <goal>jargoal>  
                   goals>  
               execution>  
           executions>  
       plugin>  
   plugins>  
build>  
  1. 配置maven-jar-plugin的参数。在标签内,我们可以添加以下内容:
<execution>  
   <goals>  
       <goal>jargoal>  
   goals>  
   <configuration>  
       <artifactId>my-projectartifactId>  
       <version>1.0version>  
       <includes>  
           <include>src/main/java/**include>  
           <include>src/main/resources/**include>  
       includes>  
   configuration>  
execution>  

在这个例子中,我们设置了artifactIdmy-projectversion1.0。此外,我们还指定了要包含的源代码和资源文件的路径。

  1. 执行 Maven 构建。在项目根目录下运行以下命令:
mvn clean package  

这将清理项目目录并构建 JAR 文件。

  1. 查看生成的 JAR 文件。在target目录下,你应该会看到生成的my-project-1.0.jar文件。
    通过这个案例,我们已经成功地使用 maven-jar-plugin 创建了一个 JAR 文件,其中包含项目的源代码和资源文件。这个例子展示了如何简单地使用 maven-jar-plugin 来打包 Maven 项目。在实际项目中,你可能还需要配置其他参数以满足不同的需求。

看个 nacos的类似的配置
Maven - 统一构建规范:Maven 插件管理最佳实践_第5张图片
这段代码是在pom.xml中的标签内添加了一个maven-jar-plugin插件的配置。以下是各个部分的解释:

  1. :开始定义一个插件。
  2. maven-jar-plugin:指定插件的 artifactId 为 maven-jar-plugin`。
  3. :开始定义插件的配置。
  4. :开始定义归档(archive)配置。
  5. :开始定义 manifest 配置。
  6. true:设置为 true以在 manifest 中添加默认实现入口。这将告诉 Java 运行时使用指定的类(通常是main` 类)作为应用程序的入口点。
  7. true:设置为 true以在 manifest 中添加默认规范入口。这将告诉 Java 运行时使用指定的类(通常是main` 类)作为应用程序的入口点,同时还会添加一些额外的规范信息。
  8. :结束 manifest 配置。
  9. :结束归档(archive)配置。
  10. :结束插件的配置。
  11. :结束插件的定义。

这个插件配置的主要目的是设置 JAR 文件的 manifest,以便在运行时使用指定的类作为应用程序的入口点。通过添加默认实现入口和默认规范入口,可以确保应用程序能够正确地运行并提供一些额外的规范信息。这通常用于创建可执行 JAR 文件,其中包含应用程序的主类。

再看个类似的配置

<plugin>  
    <groupId>org.apache.maven.pluginsgroupId>  
    <artifactId>maven-jar-pluginartifactId>  
    <version>2.3.1version>  
    <configuration>  
        <archive>  
            <manifest>  
                <mainClass>com.artisan.MyTestmainClass> 
                <addDefaultSpecificationEntries>trueaddDefaultSpecificationEntries>
                <addDefaultImplementationEntries>trueaddDefaultImplementationEntries> 
            manifest>
            
            <manifestEntries>  
                <Plugin-Id>demo-pluginPlugin-Id>  
                <Plugin-Version>1.0.0Plugin-Version>  
            manifestEntries>  
        archive>  
    configuration>  
plugin> 

在之前的工程 POM 文件中添加上述构建插件重新进行打包,可以看到 MANIFEST.MF 文件中即添加了我们配置的额外属性。

Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Created-By: Apache Maven
Built-By: great
Build-Jdk: 1.8.0_202
# Specification entries
Specification-Title: maven-v1
Specification-Version: 1.0-SNAPSHOT
# Implementation entries
Implementation-Title: maven-v1
Implementation-Version: 1.0-SNAPSHOT
Implementation-Vendor-Id: com.artisan
# Manifest
Main-Class: com.artisan.MyTest
# ManifestEntries
Plugin-Id: demo-plugin
Plugin-Version: 1.0.0
 

maven-assembly-plugin

https://maven.apache.org/plugins/maven-assembly-plugin/
Maven - 统一构建规范:Maven 插件管理最佳实践_第6张图片

https://maven.apache.org/plugins/maven-assembly-plugin/examples/index.html

Maven - 统一构建规范:Maven 插件管理最佳实践_第7张图片

在普通 Maven 工程打包时默认仅会编译工程中新建的 java 文件并存储其 .class 文件,对于 POM 文件中引用的第三方依赖并不会一同打包。

如新建一个 Maven 工程并在依赖中导入 Jackson 依赖库并进行打包编译,可以看到下图编译后的 JAR 文件中只有工程中新建的 MyTest.class 文件,项目中所导入的依赖并没有被一起打包 .

Maven - 统一构建规范:Maven 插件管理最佳实践_第8张图片

而通过 assembly 插件即可将 POM 配置中的所有依赖一同打包编译至 JAR 文件中。

其中 execution 标签定义了 assembly 插件的作用阶段,如这里设置了在 Maven package 即打包阶段生效

<plugin>  
    <groupId>org.apache.maven.pluginsgroupId>  
    <artifactId>maven-assembly-pluginartifactId>  
    <version>3.1.0version>  
    <configuration>  
        <descriptorRefs>  
            <descriptorRef>jar-with-dependenciesdescriptorRef>  
        descriptorRefs>  
        
        <finalName>${project.artifactId}-${project.version}-allfinalName>  
        <appendAssemblyId>falseappendAssemblyId>  
        <attach>falseattach>  
        <archive>  
            <manifest>  
                <mainClass>fully.qualified.MainClassmainClass> 
                <addDefaultSpecificationEntries>trueaddDefaultSpecificationEntries>
                <addDefaultImplementationEntries>trueaddDefaultImplementationEntries> 
            manifest>   
        archive>  
    configuration>  
    <executions>  
        <execution>  
            
            <id>make-assemblyid>  
            <phase>packagephase>  
            <goals>  
                <goal>singlegoal>  
            goals>  
        execution>  
    executions>  
plugin>

 

在工程 POM 配置中添加上述信息并重新编译打包工程,可以看到此时 JAR 文件中除了自定义创建的 MyTest.clss 文件外同时包含了依赖的第三方库。

Maven - 统一构建规范:Maven 插件管理最佳实践_第9张图片


另外一个Demo : Creating fat JARs using the Maven Assembly plugin

  1. Go to the pom.xml file and make sure the main application class is specified:
<properties>
    <main.class>com.example.ApplicationKtmain.class>
properties>
  1. If you use EngineMain without the explicit main function, the application’s main class depends on the used engine and might look as follows: io.ktor.server.netty.EngineMain.

Add maven-assembly-plugin to the plugins block as follows:

<plugin>
    <groupId>org.apache.maven.pluginsgroupId>
    <artifactId>maven-assembly-pluginartifactId>
    <version>2.6version>
    <configuration>
        <descriptorRefs>
            <descriptorRef>jar-with-dependenciesdescriptorRef>
        descriptorRefs>
        <archive>
            <manifest>
                <addClasspath>trueaddClasspath>
                <mainClass>${main.class}mainClass>
            manifest>
        archive>
    configuration>
    <executions>
        <execution>
            <id>assemble-allid>
            <phase>packagephase>
            <goals>
                <goal>singlegoal>
            goals>
        execution>
    executions>
plugin>
  1. Build an assembly

To build an assembly for the application, open the terminal and execute the following command:

mvn package

When this build completes, you should see the tutorial-server-get-started-maven-0.0.1-jar-with-dependencies.jar file in the target directory.

  1. Run the application

To run the built application:

Open the terminal and execute the following command to run the application:

java -jar target/tutorial-server-get-started-maven-0.0.1-jar-with-dependencies.jar

Wait until the following message is shown:

[main] INFO  Application - Responding at http://0.0.0.0:8080

You can click the link to open the application in a default browser:

Maven - 统一构建规范:Maven 插件管理最佳实践_第10张图片


maven-shade-plugin

https://maven.apache.org/plugins/maven-shade-plugin/

Maven - 统一构建规范:Maven 插件管理最佳实践_第11张图片

Shade 插件的功能更为强大,其提供了两个功能:

  • 第一个即与 assembly 类似可实现依赖的打包编译,与 assembly 不同的是 Shade 提供了更灵活的执行策略,可指定需要打包编译的依赖集合。

  • 另一个即实现包的重命名功能,我们都知道 Maven 并不允许在一共工程中同时引入单个依赖的不同版本,而通过 Shade 插件即可实现二次包装从而绕开该限制。

Shade 插件 - 标签

下面介绍一下 Shade 插件中各标签的使用。

artifactSet

通过 includes 标签可以指定需要一同打包编译的第三方依赖。

定义的格式为:groupId:artifactId。

<artifactSet>  
    <includes>  
        <include>groupId:artifactIdinclude>  
    includes>  
artifactSet>  

relocations

通过 relocations 标签即可实现模块的重命名功能。

其中 pattern 为需要重命名的模块包, shadedPattern 为重命名后的模块名。

<relocations>  
    <relocation>  
        <pattern>old.package.namepattern>  
        <shadedPattern>new.package.nameshadedPattern>  
    relocation>
relocations>  

filters

通过 filters 标签可以实现非必要文件的排除,如常见的协议文件等,可通过文件名或类型实现匹配。

<filters>  
    <filter>  
        <artifact>*:*artifact>  
        <excludes>  
            <exclude>filenameexclude>  
            <exclude>file patternexclude>  
        excludes>  
    filter>  
filters>  

完整配置

Shade 同样可以通过 execution 设置作用阶段,上述介绍标签的完整配置内容如下:

<plugins>  
    <plugin>  
        <groupId>org.apache.maven.pluginsgroupId>  
        <artifactId>maven-shade-pluginartifactId>  
        <version>3.2.0version>  
        <executions>  
              
            <execution>  
                <phase>packagephase>  
                <goals>  
                    <goal>shadegoal>  
                goals>  
            execution>  
        executions>  
        <configuration>  
            <minimizeJar>trueminimizeJar>  
              
            <artifactSet>  
                <includes>  
                    <include>com.fasterxml.jackson.core:jackson-coreinclude>  
                includes>  
            artifactSet>  
              
            <relocations>  
                <relocation>  
                      
                    <pattern>com.fasterxml.jackson.corepattern>  
                      
                    <shadedPattern>com.ibudai.fasterxml.jackson.coreshadedPattern>  
                relocation>   
            relocations>  
              
            <filters>  
                <filter>  
                    <artifact>*:*artifact>  
                    <excludes>  
                        <exclude>META-INF/license/**exclude>  
                        <exclude>META-INF/*exclude>  
                        <exclude>LICENSEexclude>  
                        <exclude>NOTICEexclude>  
                    excludes>  
                filter>  
            filters>  
        configuration>  
    plugin>  
plugins>

在之前的工程中添加上述配置并重新打包,可以看到编译后的 Jackson 模块包层级已经变成我们自定义的内容,而 Java 的类加载即通过类的完成限定名(包名+类名)来区分是否为同一个类,因此通过 Shade 插件即可实现 Maven 的单一工程多版本引入。

Maven - 统一构建规范:Maven 插件管理最佳实践_第12张图片
官方文档

https://maven.apache.org/plugins/maven-shade-plugin/examples/class-relocation.html

Maven - 统一构建规范:Maven 插件管理最佳实践_第13张图片
Maven - 统一构建规范:Maven 插件管理最佳实践_第14张图片

你可能感兴趣的:(【Maven】,maven,插件)