I'm using Scala along with play framework. So I've set my system timezone to UTC:
sudo systemsetup -gettimezone
Time Zone: GMT
But
println(DateTime.now().toString)
results into "2018-10-10T19:29:40.886+02:00" and all of the dates I operate in my code keep my actual timezone unless I set it manually by withZone. How do I set my system date properly? Would appreciate any help!
P.S. I'm using Postman for testing, so if there is a way to set it there it could also work...