Besides version control systems, are there any tools that support release management? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T19:07:56Zhttp://stackoverflow.com/feeds/question/268890http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/268890/besides-version-control-systems-are-there-any-tools-that-support-release-managem1Besides version control systems, are there any tools that support release management?Thomas Owens2008-11-06T14:34:49Z2008-11-06T14:44:57Z
<p>Most of the time, I've seen release management handled as a defined process with the supporting tool as the version control system (usually via branching and tagging). However, are there any tools dedicated to release management? I'm looking for both open source and closed source tools, if any exist.</p>
http://stackoverflow.com/questions/268890/besides-version-control-systems-are-there-any-tools-that-support-release-managem/268921#2689212Answer by Decio Lira for Besides version control systems, are there any tools that support release management?Decio Lira2008-11-06T14:43:16Z2008-11-06T14:43:16Z<p>You can use <a href="http://ant.apache.org/" rel="nofollow">ant</a> or <a href="http://maven.apache.org/" rel="nofollow">maven</a> for automating tasks like generating packages and deploys to remote servers.</p>
http://stackoverflow.com/questions/268890/besides-version-control-systems-are-there-any-tools-that-support-release-managem/268928#2689281Answer by Robert S. for Besides version control systems, are there any tools that support release management?Robert S.2008-11-06T14:44:57Z2008-11-06T14:44:57Z<p>Release management transcends tools, but that doesn't mean you can't put together an environment to support your RM processes and strategy. We rely heavily on Visual Studio TFS for our RM approach, since it supports build automation, SCM, QA (testing), and integrates with SharePoint 2007 for documentation purposes.</p>
<p>Our RM workflow is hosted in SharePoint as well. This is all very dependent on the Microsoft stack, obviously, but there are equivalent OSS tools.</p>
<p>ETA: Our RM approach is based somewhat heavily on ITIL v2, so it might be more rigid than what you are asking for.</p>