I need to read properties file located inside resources folder of buildSrc special module to create kotlin object which will be accessible by other project modules. I tried to put this properties file
- in the root project folder(this case sometimes works sometimes not, so I look for more reliable case)
- inside of buildSrc folder directly
- and now trying by putting inside "conventional" resources folder inside buildSrc which even highlighted by ide as recognized resources folder
But during assembling of modules I get Exception file not found on the line load()
So 2 questions:
- where properties file should be located
- how to read it from kotlin inside buildSrc module.


