截止本日,CruiseControl(簡稱CC)最新版本為2.8.4,此版本安裝好以後,預設的config.xml提高了一個名為"connectfour"的樣本,配置非常簡潔,基本上通過與官方網站上的《Configuration Reference》對比一下便會基本瞭解。
可以通過這裡瞭解config.xml的所有元素(elements):http://cruisecontrol.sourceforge.net/main/configxml.html
關於config.xml檔案的講解你可以在這裡發現:http://confluence.public.thoughtworks.org/display/CC/ConfigFiles
日後若空閑會將其翻譯成中文版。
<cruisecontrol>
<!--測試範例-->
<project name="connectfour">
<listeners>
<currentbuildstatuslistener file="logs/${project.name}/status.txt"/>
</listeners>
<bootstrappers>
<antbootstrapper anthome="apache-ant-1.7.0" buildfile="projects/${project.name}/build.xml" target="clean" />
</bootstrappers>
<modificationset quietperiod="30">
<!-- touch any file in connectfour project to trigger a build -->
<filesystem folder="projects/${project.name}"/>
</modificationset>
<schedule interval="300">
<ant anthome="apache-ant-1.7.0" buildfile="projects/${project.name}/build.xml"/>
</schedule>
<log>
<merge dir="projects/${project.name}/target/test-results"/>
</log>
<publishers>
<onsuccess>
<artifactspublisher dest="artifacts/${project.name}" file="projects/${project.name}/target/${project.name}.jar"/>
</onsuccess>
</publishers>
</project>
</cruisecontrol>