I've been looking at the user guide, but I haven't been able to see what is the best practice when it comes to handling different environments. Maven has got its build profiles:
http://maven.apache.org/guides/mini/guide-building-for-different-environments.html The use case I've got is that I have a few configuration parameters of the application which tells the webapp where to locate some resources by URL. These URL's aren't the same for system test, acceptance test and production environment and I have a need to parametrize this for different builds. Are configuration concept the way to go with Gradle? Any other solutions? Using ANT filter tasks? Thanks, Trond Andersen
