[X] The "/ForLatin/ForLatin_Windows_Installer.exe" file could not be found or is not available. Please select another file.

Plugins for CruiseControl.NET. Currently only one plugin is available: BrekiLabeller - a custom labeller for CruiseControl.NET. Allows build labelling in the "prefix-M.m.B.R" format. Similar to NAnt Contrib <version> task.


http://brekiccnetutils.sourceforge.net





Separate each tag with a space.

Release Date:

2008-01-23

Topics:

License:

Operating System:

Intended Audience:

User Interface:

Programming Language:

Registered:

2007-05-07

Ratings and Reviews

Be the first to post a text review of Breki CCNet Utilities. Rate and review a project by clicking thumbs up or thumbs down in the right column.

Project Feed

  • CruiseControlUtils-1.7.314.3 Released (for CCNet 1.3)

    Contributed by Tobias Jahn. A new release contains some new options for generating labels. You can now generate both build number and revision number from a file. Also, the revision number can be generated by an external tool (this is similar to SvnRevisionLabeller). 1. Installation: - copy ccnet.Breki.plugin.dll to the CC.net &quot;server&quot; subdirectory - modify CC.net configuration file and save it 2. Configuration: Version format: &quot;M.m.b.r&quot; M - major number m - minor number b - build number r - release number Parameters: - BuildNumberScheme: defines the algorithm for generating build numbers. Possible values: &quot;Increment&quot;: increments an existing build number &quot;NoIncrement: uses an existing build number &quot;MonthDaySinceReleaseStart&quot;: (default) generates build number based on the release start date and formula: number of months since release start * 100 + current day in month &quot;FromVersionFile&quot;: uses the build number from the version file - RevisionNumberScheme: defines the algorithm for generating release numbers. Possible values: &quot;DailyIncremental&quot;: (default) increment an existing revision number if the previous build was on the same day as the new one or reset to 0 if those days differ &quot;SecondsSinceMidnight&quot;: number of seconds since the start of today / 10 &quot;FromVersionFile&quot;: uses the build number from the version file &quot;FromExternalApp&quot;: uses the output of an external application (needs RevisionAppPath and RevisionAppArgs). - MajorNumber: major number to use (not required, default is 1) - MinorNumber: minor number to use (not required, default is 0) - ReleaseStartDate: start date of the release (not required). Has to be in the MM/DD/YYYY format. - VersionFilePath: (not required) path to the file containing the version information. The file should only contain version, which should be in the format &quot;M.m.b.r&quot; (NOTE: build and release numbers are ignored) This information is used to extract the following: - major number - minor number - build number (only needed if &quot;BuildNumberScheme&quot; is set to &quot;FromVersionFile&quot;) - release start date: labeller uses last modified time of the file as a release start date When VersionFilePath parameter is used, MajorNumber, MinorNumber and ReleaseStartDate are ignored. - Prefix: (not required, default is empty string) prefix for the label - RevisionAppPath: Path to external application (only needed if &quot;RevisionNumberScheme&quot; is set to &quot;FromExternalApp&quot;) - RevisionAppArgs: Arguments passed to external application (only needed if &quot;RevisionNumberScheme&quot; is set to &quot;FromExternalApp&quot;) Example of the CCNet labeller configuration block: &lt;labeller type=&quot;BrekiLabeller&quot;&gt; &lt;BuildNumberScheme&gt;MonthDaySinceReleaseStart&lt;/BuildNumberScheme&gt; &lt;RevisionNumberScheme&gt;DailyIncremental&lt;/RevisionNumberScheme&gt; &lt;VersionFilePath&gt;ProjectVersion.txt&lt;/VersionFilePath&gt; &lt;MajorNumber&gt;1&lt;/MajorNumber&gt; &lt;MinorNumber&gt;1&lt;/MinorNumber&gt; &lt;ReleaseStartDate&gt;07/18/2006&lt;/ReleaseStartDate&gt; &lt;Prefix&gt;MyProject-&lt;/Prefix&gt; &lt;/labeller&gt; Example for a labeller which takes the build number from a file and uses an external application for the revision: &lt;labeller type=&quot;BrekiLabeller&quot;&gt; &lt;BuildNumberScheme&gt;FromVersionFile&lt;/BuildNumberScheme&gt; &lt;RevisionNumberScheme&gt;FromExternalApp&lt;/RevisionNumberScheme&gt; &lt;VersionFilePath&gt;...somepath...\Version.txt&lt;/VersionFilePath&gt; &lt;RevisionAppPath&gt;...somepath...\CvsCommitCount.exe&lt;/RevisionAppPath&gt; &lt;RevisionAppArgs&gt;some arguments&lt;/RevisionAppArgs&gt; &lt;/labeller&gt;

    posted by igorbrejc 663 days ago

  • brekiccnetutils CruiseControlUtils-1.7.314.3 file released: CruiseControlUtils-1.7.314.3.zip

    posted 663 days ago

  • File released: /brekiccnetutils/CruiseControlUtils-1.7.314.3/CruiseControlUtils-1.7.314.3.zip

    posted 663 days ago

  • brekiccnetutils CruiseControlUtils-1.6.23.1 file released: CruiseControlUtils-1.6.23.1.zip

    posted 877 days ago

  • CruiseControlUtils-1.6.23.1 Released (for CCNet 1.3)

    A new version of BrekiLabeller for CruiseControl.NET is released. It is built for CCNet version 1.3. BrekiLabeller is a custom CCNet labeller which allows build labelling in the &quot;prefix-M.m.B.R&quot; format. Also allows defining various build and revision numbering schemes and using project version text file as the version number source. Similar to NAnt Contrib &lt;version&gt; task. 1. Installation: - copy ccnet.Breki.plugin.dll to the CC.net &quot;server&quot; subdirectory - modify CC.net configuration file and save it 2. Configuration: Version format: &quot;M.m.b.r&quot; M - major number m - minor number b - build number r - release number Parameters: - BuildNumberScheme: defines the algorithm for generating build numbers. Possible values: &quot;Increment&quot;: increments an existing build number &quot;NoIncrement: uses an existing build number &quot;MonthDaySinceReleaseStart&quot;: (default) generates build number based on the release start date and formula: number of months since release start * 100 + current day in month - RevisionNumberScheme: defines the algorithm for generating release numbers. Possible values: &quot;DailyIncremental&quot;: (default) increment an existing revision number if the previous build was on the same day as the new one or reset to 0 if those days differ &quot;SecondsSinceMidnight&quot;: number of seconds since the start of today / 10 - MajorNumber: major number to use (not required, default is 1) - MinorNumber: minor number to use (not required, default is 0) - ReleaseStartDate: start date of the release (not required). Has to be in the MM/DD/YYYY format. - VersionFilePath: (not required) path to the file containing the version information. The file should only contain version, which should be in the format &quot;M.m.b.r&quot; (NOTE: build and release numbers are ignored) This information is used to extract the following: - major number - minor number - release start date: labeller uses last modified time of the file as a release start date When VersionFilePath parameter is used, MajorNumber, MinorNumber and ReleaseStartDate are ignored. - Prefix: (not required, default is empty string) prefix for the label Example of the CCNet labeller configuration block: &lt;labeller type=&quot;BrekiLabeller&quot;&gt; &lt;BuildNumberScheme&gt;MonthDaySinceReleaseStart&lt;/BuildNumberScheme&gt; &lt;RevisionNumberScheme&gt;DailyIncremental&lt;/RevisionNumberScheme&gt; &lt;VersionFilePath&gt;ProjectVersion.txt&lt;/VersionFilePath&gt; &lt;MajorNumber&gt;1&lt;/MajorNumber&gt; &lt;MinorNumber&gt;1&lt;/MinorNumber&gt; &lt;ReleaseStartDate&gt;07/18/2006&lt;/ReleaseStartDate&gt; &lt;Prefix&gt;MyProject-&lt;/Prefix&gt; &lt;/labeller&gt;

    posted by igorbrejc 878 days ago

  • File released: /brekiccnetutils/CruiseControlUtils-1.6.23.1/CruiseControlUtils-1.6.23.1.zip

    posted 878 days ago

  • brekiccnetutils CruiseControlUtils-1.5.8.0 file released: CruiseControlUtils-1.5.8.0.zip

    posted 923 days ago

  • CruiseControlUtils-1.5.8.0 Released (for CCNet 1.2.1)

    A new version of BrekiLabeller for CruiseControl.NET is released. It is built for CCNet version 1.2.1. BrekiLabeller is a custom CCNet labeller which allows build labelling in the &quot;prefix-M.m.B.R&quot; format. Also allows defining various build and revision numbering schemes and using project version text file as the version number source. Similar to NAnt Contrib &lt;version&gt; task. 1. Installation: - copy ccnet.Breki.plugin.dll to the CC.net &quot;server&quot; subdirectory - modify CC.net configuration file and save it 2. Configuration: Version format: &quot;M.m.b.r&quot; M - major number m - minor number b - build number r - release number Parameters: - BuildNumberScheme: defines the algorithm for generating build numbers. Possible values: &quot;Increment&quot;: increments an existing build number &quot;NoIncrement: uses an existing build number &quot;MonthDaySinceReleaseStart&quot;: (default) generates build number based on the release start date and formula: number of months since release start * 100 + current day in month - RevisionNumberScheme: defines the algorithm for generating release numbers. Possible values: &quot;DailyIncremental&quot;: (default) increment an existing revision number if the previous build was on the same day as the new one or reset to 0 if those days differ &quot;SecondsSinceMidnight&quot;: number of seconds since the start of today / 10 - MajorNumber: major number to use (not required, default is 1) - MinorNumber: minor number to use (not required, default is 0) - ReleaseStartDate: start date of the release (not required) - VersionFilePath: (not required) path to the file containing the version information. The file should only contain version, which should be in the format &quot;M.m.b.r&quot; (NOTE: build and release numbers are ignored) This information is used to extract the following: - major number - minor number - release start date: labeller uses last modified time of the file as a release start date When VersionFilePath parameter is used, MajorNumber, MinorNumber and ReleaseStartDate are ignored. - Prefix: (not required, default is empty string) prefix for the label Example: &lt;labeller type=&quot;BrekiLabeller&quot;&gt; &lt;BuildNumberScheme&gt;MonthDaySinceReleaseStart&lt;/BuildNumberScheme&gt; &lt;RevisionNumberScheme&gt;DailyIncremental&lt;/RevisionNumberScheme&gt; &lt;VersionFilePath&gt;ProjectVersion.txt&lt;/VersionFilePath&gt; &lt;MajorNumber&gt;1&lt;/MajorNumber&gt; &lt;MinorNumber&gt;1&lt;/MinorNumber&gt; &lt;ReleaseStartDate&gt;07/18/2006&lt;/ReleaseStartDate&gt; &lt;Prefix&gt;MyProject-&lt;/Prefix&gt; &lt;/labeller&gt;

    posted by igorbrejc 923 days ago

  • File released: /brekiccnetutils/CruiseControlUtils-1.5.8.0/CruiseControlUtils-1.5.8.0.zip

    posted 923 days ago

Rate and Review

Be the first person to add a text review.

Would you recommend this project?






<

Related Projects

Breki CCNet Utilities Actions

Thanks for your rating!

Would you also like to write a review?





Skip Review