12. Maven-plugin 设置和常见命令详解

核心 Plugin

Clean Plugin

The Clean Plugin is used when you want to remove files generated at build-time in a project’s directory.

跳过 Clean

1
mvn clean -Dmaven.clean.skip=true

Resources Plugin

Compiler Plugin

[JDK 1.8 及之前] Setting the -source and -target of the Java Compiler

1
2
3
4
5
6
7
8
<project>
[...]
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
[...]
</project>

或直接配置插件:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<project>
[...]
<build>
[...]
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
[...]
</build>
[...]
</project>

[JDK 9 及之之后] To target Java 9 or later, you should at least use version 3.6.0 of the maven-compiler-plugin and set the maven.compiler.release property to the Java release you are targetting (e.g. 9, 10, 11, 12, etc.).

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<properties>
<maven.compiler.release>11</maven.compiler.release>
</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>

Surefire

Maven Surefire Plugin – Introduction http://maven.apache.org/surefire/maven-surefire-plugin/

Install Plugin

http://maven.apache.org/plugins/maven-install-plugin/

The Install Plugin has 3 goals:

  • install:install is used to automatically install the project’s main artifact (the JAR, WAR or EAR), its POM and any attached artifacts (sources, javadoc, etc) produced by a particular project. 在大多数情况下,install: install 目标不需要任何配置,它需要在默认构建生命周期的安装阶段安装项目的 POM 和工件文件。
  • install:install-file is mostly used to install an externally created artifact into the local repository, along with its POM. In that case the project information can be taken from an optionally specified pomFile, but can also be given using command line parameters.
  • install:help displays help information on maven-install-plugin.

如果 JAR 是由 Apache Maven 构建的,那么它将在 META-INF 目录的子文件夹中包含 pom.xml,默认情况下将读取该文件夹。在这种情况下,你需要做的就是:

1
2
3
4
5
6
7
8
9
10
mvn org.apache.maven.plugins:maven-install-plugin:3.1.0:install-file \
-Dfile=<path-to-file>
````

Apache maven 安装插件可以在本地存储库中包含预先构建的自定义 POM 和工件。只需将 pomFile 参数的值设置为自定义 POM 的路径。

```sh
mvn org.apache.maven.plugins:maven-install-plugin:3.1.0:install-file \
-Dfile=path-to-your-artifact-jar \
-DpomFile=path-to-pom

有时候你没有第三方工件的 POM。例如,在存储库中安装专有的或商业的 JAR 时。在这种情况下,Install Plugin 可以创建一个泛型 POM,其中包含 Maven 所需的最小 POM 元素集,例如 groupId、 artifactId、 version、 packaging。您可以通过将 generatePom 参数设置为 true 来告诉 Maven 生成 POM。

1
2
3
4
5
6
7
mvn org.apache.maven.plugins:maven-install-plugin:3.1.0:install-file  \
-Dfile=path-to-your-artifact-jar \
-DgroupId=your-groupId \
-DartifactId=your-artifactId \
-Dversion=version \
-Dpackaging=jar \
-DgeneratePom=true

简版

1
2
3
4
5
6
mvn install:install-file \
-Dfile=E:\jave-1.0.2.jar \
-DgroupId=it.sauronsoftware \
-DartifactId=jave \
-Dversion=1.0.2 \
-Dpackaging=jar

将工件安装到特定的本地存储库路径
Apache Maven Install Plugin 使用 settings.xml 中定义的本地存储库来安装工件。
您可以通过在安装时设置 localRepositoryPath 参数在特定的本地存储库上安装构件。

1
2
3
4
5
6
mvn org.apache.maven.plugins:maven-install-plugin:3.1.0:install-file  -Dfile=path-to-your-artifact-jar \
-DgroupId=your.groupId \
-DartifactId=your-artifactId \
-Dversion=version \
-Dpackaging=jar \
-DlocalRepositoryPath=path-to-specific-local-repo

安装辅助工件
有时候,在本地存储库中安装了主要构件之后,您需要安装辅助构件。要安装辅助构件,您需要使用分类器参数对辅助构件进行分类。

假设您想为一个旧的工件安装源代码,比如 commons-logging-1.0.3。中央存储库只有该版本的主要构件和 -javadoc 构件。将源文件打包到本地磁盘上的 JAR 文件中,然后运行以下命令:

1
2
3
4
5
6
mvn org.apache.maven.plugins:maven-install-plugin:3.0.0:install-file  -Dfile=path-to-commons-logging-sources.jar \
-DgroupId=commons-logging \
-DartifactId=commons-logging \
-Dversion=1.0.3 \
-Dpackaging=jar \
-Dclassifier=sources

Deploy Plugin

Apache Maven Deploy Plugin – Introduction http://maven.apache.org/plugins/maven-deploy-plugin/

Site Plugin

Apache Maven Site Plugin – Introduction http://maven.apache.org/plugins/maven-site-plugin/

Packaging types/tools

Jar Plugin

默认的打包插件,用来打普通的 project JAR 包;

http://maven.apache.org/plugins/maven-jar-plugin/index.html

Goals Overview

  • jar:jar create a jar file for your project classes inclusive resources.
  • jar:test-jar create a jar file for your project test classes.

Shade Plugin

http://maven.apache.org/plugins/maven-shade-plugin/index.html

用来打可执行 JAR 包,也就是所谓的 fat/uber JAR 包;

Source Plugin

The Source Plugin has five goals:

  • source:aggregate aggregrates sources for all modules in an aggregator project.
  • source:jar is used to bundle the main sources of the project into a jar archive.
  • source:test-jar on the other hand, is used to bundle the test sources of the project into a jar archive.
  • source:jar-no-fork is similar to jar but does not fork the build lifecycle.
  • source:test-jar-no-fork is similar to test-jar but does not fork the build lifecycle.

为当前项目的源文件创建一个 JAR 归档。

使用 Maven 打包 SpringBoot 项目将源码 source.jar

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

因为必须在 deploy 之前要先把 source.jar 生成出来,deploy 插件才能识别target 路径下的 jar 并进行上传,所以推荐将 jar-no-fork 绑定在 verify 流程节点上。

需要注意的是,dependencies 和 dependencyManagement 均是 project 下的直接子元素,但是 plugins 和 pluginManagement 却是 project 下 build 的直接子元素。

Tools 插件

archetype 插件

Maven 使用原型 archetype 插件创建项目。archetype 也就是原型,是一个 Maven 插件,准确说是一个项目模板,它的任务是根据模板创建一个项目结构。

创建目录的两种方式:

  1. archetype:generate 按照提示进行选择
  2. archetype:generate -D参数

已知 archetypeArtifactId 有多种, 常用的有 maven-archetype-webappmaven-archetype-quickstart。要创建一个简单的 Java 应用,我们将使用 maven-archetype-quickstart 插件。

Windows 下可键入:

1
2
3
4
5
6
7
8
9
mvn archetype:generate ^
-DarchetypeGroupId=org.apache.maven.archetypes ^
-DarchetypeArtifactId=maven-archetype-quickstart ^
-DarchetypeVersion=1.4 ^
-DgroupId=com.abc ^
-DartifactId=restaurant ^
-Dversion=1.0-SNAPSHOT ^
-Dpackage=com.abc.restaurant ^
-DinteractiveMode=false

参考说明:

  • -DarchetypeArtifactId: 指定 ArchetypeId,maven-archetype-quickstart,创建一个简单的 Java 应用
  • -DinteractiveMode: 是否使用交互模式
  • -DgroupId=组织名, 公司网址的反写+项目名
  • -DartifactId=项目名-模块名
  • -Dversion=版本号
  • -Dpackage=代码所存在的包名

assembly 插件

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

用于构建源代码和/或二进制文件的程序集(发行版)。支持自定义的打包结构,也可以定制依赖项等。

运行示例

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
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifest>
<mainClass>com.wdbyte.bing.Wallpaper</mainClass>
</manifest>
</archive>
<descriptorRefs>
<!-- 这个 jar-with-dependencies 是 assembly 预先写好的一个,组装描述引用 -->
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!--工程名-->
<finalName>${project.name}</finalName>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- 绑定到package生命周期 -->
<phase>package</phase>
<goals>
<!-- 只运行一次 -->
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

help 插件

http://maven.apache.org/plugins/maven-help-plugin/

查看当前处于激活状态的 profile

1
mvn help:active-profiles

检查当前 Maven 环境启用的文件

1
mvn help:effective-settings

查看当前项目的 pom 配置,包括所有依赖

1
mvn help:effective-pom

打印所有可用的环境变量和 Java 系统属性

1
mvn help:system

其他插件

Tomcat 插件

详细帮助
mvn help:describe -Dplugin=tomcat7

使用带 groupId 的全限定名,例子如下:
mvn help:describe -Dplugin=org.apache.tomcat.maven:tomcat7-maven-plugin:2.2

tomcat 命令

1
2
3
* $ mvn tomcat7:run
* $ mvn tomcat:deploy
* $ mvn tomcat:undeploy

常见命令

1
mvn [options] [<goal(s)>] [<phase(s)>]

指定使用某个配置文件执行 Maven 命令

1
2
mvn -s <filepath> <goal>
mvn -s ~/.m2/settings_local.xml clean deploy

查看当前项目的所有 mvn 配置

1
mvn -X

mvn archetype:generate 使用模板生成项目
mvn compile 编译源代码
mvn test 跑单元测试
mvn package 打包
mvn deploy 部署
mvn site 生成站点
mvn clean 清理
mvn install 安装