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

I have a project, let's says A that uses maven (3) to build and is continuously integrated with Hudson. I also have a project B that depends on the artifacts produced by A. I want this dependency to be a release dependency, not a snapshot one in order to have the possibility to upgrade it or not, depending on the QA status of A, for example.

What I am trying to achieve is the following configuration jobs in Hudson:

  • Job1: Build project A in Hudson in custom workspace triggered by perforce changelist
  • Job2: Manually release artifacts built by A to Nexus with a version XXX-<CHANGELIST> where <CHANGELIST> is the P4 changelist that triggered the latest succesful Job1
  • Job3: Build project B as usual

I know how to do Job1 and Job3 of course, but I am a little bit stuck on how to do Job2. More specifically, I am not sure:

  • How to ensure the CHANGELIST linking Job1 and Job2 is the correct one,
  • How to only deploy already built artifacts with a different version than the one they were built with
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.