How to combine/join file paths in Gradle/Groovy
One might think that joining (or combining) two file paths together with Groovy would be an easy thing to do. I’m used to “nice” methods from Ruby like File.join (see How to do a safe join pathname in ruby?): File.join(“path”, “to”, “join”) As it turns out, there is no such method in Groovy. However, here … Read more