使用maven打包的注意事项
Posted 云中飞鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用maven打包的注意事项相关的知识,希望对你有一定的参考价值。
maven编译项目的时候,默认使用的GBK,而目前大部分代码都使用的UTF-8的方式,所以这时候打出来的包容易出现乱码。
解决方式:
<!-- compiler插件, 设定JDK版本 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <encoding>UTF-8</encoding> <source>${java.version}</source> <target>${java.version}</target> <showWarnings>true</showWarnings> </configuration> </plugin>
打包的bat文件
@echo off
echo [INFO] Install the jar to local
cd %~dp0
cd ..
call mvn clean install -Dmaven.test.skip=true
pause
以上是关于使用maven打包的注意事项的主要内容,如果未能解决你的问题,请参考以下文章
Maven02_04_使用jetty来跑maven的web项目使用jetty的注意事项没有用Maven的时候是怎么打包的,自定义打包的名字的