jenkins LC_ALL 解决jenkins打包乱码问题

开发本地打包,不会乱码,但是jenkins打包出现了乱码,但是之前jenkins也不会乱码呀~

查资料发现,这是一个偶现的问题。    

出现的告警:

[WARNING] File encoding has not been set, using platform encoding ANSI_X3.4-1968, i.e. build is platform dependent!
截图:

jenkins LC_ALL 解决jenkins打包乱码问题_第1张图片

 

 解决:设置对应的机器的环境变量,如下:

jenkins LC_ALL 解决jenkins打包乱码问题_第2张图片

 

 LC_ALL:zh_CN.UTF-8

 

如果还是不生效,还可以修改工程的pom.xml配置,在pom.xml添加如下配置:

    
            UTF-8
    

亲测可以防止乱码的出现。

 

你可能感兴趣的:(jenkins LC_ALL 解决jenkins打包乱码问题)