1

I'm looking to a Jenkins (fka Hudson) plugin to visualize which revision number is connected to each build number (SCM is SVN, build done by maven).

Does anyone know of such a plugin?

Update1: Yes, I know of svn tags, we use them, we can go to svn to understand this information - but it's a cumbersome way to understand which build includes my fix.

Ran Biron
  • 6,317
  • 5
  • 37
  • 67

1 Answers1

0

I use the description setter plugin with regex Updated to revision (.*) and description r\1

PhilMY
  • 2,621
  • 21
  • 29
  • I would use that - but the problem is that we don't keep the builds on the hudson machine for a long time, so this information is lost when the build is automatically deleted. I'm looking for something that'll keep even after the build itself is deleted. – Ran Biron May 26 '11 at 20:28