Hello, I am not sure it is a bug or a misunderstanding so I'll ask first.
I have a maven matrix project with only one axis {dbtype}. The possible values are postgresql,build-flex oracle,build-flex mysql,build-flex This axis values are passed to maven through the profile configuration: mvn -P ${dbtype} clean install Unfortunatly this does not work. It just breaks and return a FAILURE for each values w/o anything else: Lancement de oracle,build-flex oracle,build-flex completed with result FAILURE Nothing else. Note: it works fine when the values don't have a comma, and I tried to escape, quote everything it does not change anything. I did not jump into the jenkins code, but I tried to add a second axis in my job, and I spot that the axis separator in the URL is a comma: http://.../dbtype=postgres,build-flex*,*secondAxis=only-one/ So I suspect jenkins is taking the comma of my profile list as the axis separator. I am using the latest version of jenkins (1.492) on windows xp java 6. M.