Is there any way to change the working directory of a Jenkins Maven build?
There is a Maven build that will only work if the current working direc
Solution:
cd subfolder; mvn -f ../pom.xml task
Maven does not provide an option to do it the other way round, meaning the sensible way for this use-case, probably because Maven hates you.