Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to set up a multi-configuration project in Jenkins with a single user-defined axis (call it "axis"). The value associated with each configuration would then be used to invoke top-level maven targets in ${axis}/pom.xml. The trouble is, I can't find the proper syntax for this, if indeed it does exist (${axis}, $axis, $AXIS, and ${env.axis} all fail). I would think it would be shell syntax, which it doesn't seem to be, but regardless it should be either simple or impossible. Is it possible?

share|improve this question
Thanks for your answers -- I was not able to resolve this issue fast enough, so I went with an entirely different build framework. – frisbeejunkie Feb 28 '12 at 20:22

3 Answers

We use a jdk axis and just use the name of the jdk so I think you could just use axis/pom.xml

share|improve this answer

Is your Jenkins installation running on Windows?

For each Custom Axis, an environment variable is created. You can refer to your custom axis using ${axis} if your server is running Linux, but on Windows you must refer to it as %axis%

share|improve this answer

${axis}/pom.xml should work in my experience.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.