I use mac and intellij and working on a java codebase where properties file have some properties like below:
ops.payment.root.properties.file=file:////w:/webapp-conf/conf/ops-payment_root.properties
The issues is since I am on mac I can't create a w: (w drive) so I am looking for a way to make it work. I tried creating the symlink using the ln -s command but it creates the symlink like Users/myuser/w:/ which is not working since the code is looking for w: and not Users/myuser/w:
Can someone please let me know if they have ever run into similar issue?
The obvious solution of updating the property file with the my local specific path will not work for long, because the whole codebase has many similar properties in many different properties file and if I update all of them, it will be a nightmare while committing and updating my code from git since there are other developers working on it.