Author: nickboldt
Date: 2011-03-29 18:31:44 -0400 (Tue, 29 Mar 2011)
New Revision: 30129
Modified:
trunk/build/hudson-jobs/pom-sync.xml
Log:
update pom-sync.xml w/ new parameter + comment out default values so they can be passed as
-D flags OOTB
Modified: trunk/build/hudson-jobs/pom-sync.xml
===================================================================
--- trunk/build/hudson-jobs/pom-sync.xml 2011-03-29 22:03:08 UTC (rev 30128)
+++ trunk/build/hudson-jobs/pom-sync.xml 2011-03-29 22:31:44 UTC (rev 30129)
@@ -43,36 +43,37 @@
$ export JAVA_HOME=/opt/sun-java2-6.0/; mvn clean install
-->
+ <!-- more output w/ verbose; default: false -->
+ <!-- <verbose>false</verbose> -->
- <!-- more output w/ verbose; default false -->
- <verbose>false</verbose>
-
<!-- server and connection details -->
<!-- <
hudsonURL>https://hudson.qa.jboss.com/hudson/</hudsonURL>
-->
<hudsonURL>http://localhost:8080/</hudsonURL>
<username>SET USERNAME HERE</username>
<password>SET PASSWORD HERE</password>
- <!-- to select a subset of jobs, use these filters; default none (all jobs on
server!) -->
+ <!-- to select a subset of jobs, use these filters; default: view/myViewName/
-->
<!-- <viewFilter>view/DevStudio_Stable_Branch/</viewFilter> -->
- <viewFilter>view/DevStudio_Trunk/</viewFilter>
+ <!-- <viewFilter>view/DevStudio_Trunk/</viewFilter> -->
<!-- default .* to select all -->
+ <!-- <regexFilter>.*TEMPLATE.*</regexFilter> -->
<!-- <regexFilter>.*</regexFilter> -->
- <!-- <regexFilter>.*TEMPLATE.*</regexFilter> -->
<regexFilter>MyJobNameHere</regexFilter>
- <!-- if there's an existing config.xml (not config.$timestamp.xml) then
overwrite it if true -->
- <overwriteExistingConfigXMLFile>false</overwriteExistingConfigXMLFile>
+ <!-- if there's an existing config.xml (not config.$timestamp.xml) then
overwrite it if true; default false -->
+ <!--
<overwriteExistingConfigXMLFile>false</overwriteExistingConfigXMLFile> -->
<!-- either "pull" updated job config.xml file(s) from the server
(default, reads only & stores a copy locally), or
"push" updates from local to the server (replacing existing
job config.xml on server :: CAUTION!)
-->
- <operation>pull</operation>
+ <!-- <operation>pull</operation> -->
+
+ <!-- if pushing, can also store a copy of the latest configuration with
storeSnapshotOnPush = true; default false -->
+ <!-- <storeSnapshotOnPush>false</storeSnapshotOnPush> -->
</configuration>
</plugin>
</plugins>
</build>
</project>
-