When developing I use Eclipse Mars2 . Then commits to git. After that there is an assembly with use of Maven.
So Maven gives this warning:
[WARNING] Using platform encoding (Cp1255 actually) to copy filtered resources, ie build is platform dependent!
What nastoryki I need to change in Eclipse, so that the application has become platform-independent?
There is no output / output in Russian in the application.

    1 answer 1

    Added to pom.xml

     <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> 

    The warning has ceased to appear, but has not yet verified on other platforms.

    • four
      Anything that is not UTF-8 must be set on fire for all-cleansing. - don Rumata