Maven default locale not same with OS locale

前端 未结 3 2105
天涯浪人
天涯浪人 2021-02-20 06:44

When I type

mvn --version

in command prompt I see:

Default Locale : en_US

However my System Loca

3条回答
  •  广开言路
    2021-02-20 07:21

    Defining the property allows you to pass them as command line argument.

    This works for me:

    
        
            de
            -Duser.language=${user.language}
        
    
    
    mvn -Duser.language=tr
    

提交回复
热议问题