编译命令
mvn clean install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true
mvn clean package -DskipTests -Dfast
说明:
- -Dmaven.test.skip:跳过测试代码
- -Dmaven.javadoc.skip:跳过 javadoc 检查
-
编译范围(scope)
| scope取值 | 有效范围(compile, runtime, test) | 依赖传递 | 例子 | | —- | —- | —- | —- | | compile | all | 是 | spring-core | | provided | compile, test | 否 | servlet-api | | runtime | runtime, test | 是 | JDBC驱动 | | test | test | 否 | JUnit | | system | compile, test | 是 |
| compile :为默认的依赖有效范围。如果在定义依赖关系的时候,没有明确指定依赖有效范围的话,则默认采用该依赖有效范围。此种依赖,在编译、运行、测试时均有效。
- provided :在编译、测试时有效,但是在运行时无效。例如:servlet-api,运行项目时,容器已经提供,就不需要Maven重复地引入一遍了。
- runtime :在运行、测试时有效,但是在编译代码时无效。例如:JDBC驱动实现,项目代码编译只需要JDK提供的JDBC接口,只有在测试或运行项目时才需要实现上述接口的具体JDBC驱动。
- test :只在测试时有效,例如:JUnit。
system :在编译、测试时有效,但是在运行时无效。和provided的区别是,使用system范围的依赖时必须通过systemPath元素显式地指定依赖文件的路径。由于此类依赖不是通过Maven仓库解析的,而且往往与本机系统绑定,可能造成构建的不可移植,因此应该谨慎使用。systemPath元素可以引用环境变量,当引用第三方包,且没有源代码时候,可以使用system path。
<dependency>
<groupId>ctec</groupId>
<artifactId>xxx-core</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/libs/ctec-xxx-core.jar</systemPath>
</dependency>
若要将jar包含到war中,需要使用
true 。<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
手动安装jar包到仓库
cmd
mvn install:install-file -DgroupId=com.mapr.hadoop -DartifactId=maprfs -Dversion=5.2.1-mapr -Dpackaging=jar -Dfile=/home/hadoop/downloads/maprfs-5.2.1-mapr.jar
mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.1.0 -Dpackaging=jar -Dfile=ojdbc6.jar
bat ```powershell @echo off
call mvn install:install-file -DgroupId=com.mapr.hadoop -DartifactId=maprfs -Dversion=5.2.1-mapr -Dpackaging=jar -DgeneratePom=true -Dfile=/home/hadoop/downloads/maprfs-5.2.1-mapr.jar call mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.1.0 -Dpackaging=jar -Dfile=ojdbc6.jar
<a name="sCCMN"></a>
# 仓库清理
```bash
find /home/vagrant/repository* -name "*.lastUpdated" -exec rm -rf {} \;
find /home/vagrant/repository* -name "*_remote.repositories" -exec rm -rf {} \;
Maven冲突解决
# 重定向到文件
mvn dependency:tree>temp/tree.txt
# 参数过滤
mvn dependency:tree -Dincludes=jline
# 将当前所有的依赖关系都展示出来,包括来自不同处的依赖项
mvn dependency:tree -Dverbose -Dincludes=commons-collections
通过Maven创建的工程的JDK版本
- 打开settings.xml文件。
- 找到profiles标签。
加入如下配置。
<profile>
<id>jdk-1.7</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.7</jdk>
</activation>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
</properties>
</profile>
Eclipse配置Maven仅连接本地仓库
设置Settings.xml。 ```xml <?xml version=”1.0” encoding=”UTF-8”?>
E:\bigdataenv\m2\repository true
2. 修改本机host文件,禁止外网仓库连接,将其指向本机,这样Maven可以快速判断连接失败。
127.0.0.1 repository.apache.org 127.0.0.1 repo.maven.apache.org
3. 更新index,window => preferences => maven 选中“download repository index updates on startup”项(同时建议也勾选上:“Download Artifact Sources”、“Download Artifact JavaDoc”),重启eclipse即可。
<a name="q8TVo"></a>
# 输出日志
```bash
mvn -X -U clean package -l build.log
控制依赖传递(optional)
optional是maven依赖jar时的一个选项,表示该依赖是可选的,不会被依赖传递。
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<optional>true</optional>
</dependency>
Maven常用插件
- maven-jar-plugin
maven-assembly-plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>
com.github.kongwu.mavenbuild.BuildExample
</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
maven-shade-plugin
管理依赖冲突、依赖隔离(maven-assembly-plugin依赖和资源文件都打入最终的Jar包,有同名覆盖问题)、可执行jar(设置MainClass)、依赖排除(最小化,将不用的类排除)、打包所有依赖(常规打包是不会将所依赖jar包打进来的)
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.github.kongwu.mavenbuild.BuildExample</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
重命名jar:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<createDependencyReducedPom>false</createDependencyReducedPom>
<outputFile>${project.basedir}/target/${project.artifactId}.jar</outputFile>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.github.test.Main</mainClass>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
<artifactSet>
<excludes>
<exclude>junit:junit</exclude>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
- maven-compiler-plugin
maven-dependency-plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-dependencies</id>
<!-- 绑定到 prepare-package 阶段 -->
<phase>prepare-package</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<includeScope>runtime</includeScope>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
|
| dependency | shade | assembly | | —- | —- | —- | —- | | 优点 | goals丰富,除了unpack还有很多其他的功能,比如清理/查看依赖树等等 | 专为uber-jar而生,而且支持shade功能,如果有重定位的需求,只能选它 | 功能最强,配置非常灵活,但没有shade功能 | | 缺点 | 毕竟只是个处理依赖的插件,在构建方面的功能比较弱 | 复杂的构建需求下,功能会有些不足 | 没有shade功能,而且配置比较复杂 | | 应用场景 | 适合简单的uber-jar功能 | 最适合uber-jar的构建,配合shade功能简直完美 | 适合复杂场景下的构建,不止是uber jar |
常见问题
- Java命令运行时提示“*.jar中没有主清单属性”**。
解决:在pom中添加maven插件maven-shade-plugin 即可。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.polaris.PlatformMain</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
对于SpringBoot:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
参考
码经笔记:SpringBoot项目集成maven-shade-plugin
https://majing.io/posts/10000050811155
博文:Maven各种花式构建,不用SpringBoot也能打出可执行Jar包
http://www.soiiy.com/java/11841.html