Hi,
I've created a "CCLabel" as a custom task for the Clearcase Tool.
Herewith, I have attached the following files:
1. CCLabel.java
2. build.xml
3. build.propertiesI'd like to contribute this task to Jakarta if you think's it's valuable, but I want to make sure it is within your guidelines. Thanks! M.Sathyan
CCLabel.java
Description: java/
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="ClearcaseLabel" default="label" basedir=".">
<!--
Title: Clearcase Label Build file - Ant Build File
Description: Label
Version: 1.0
-->
<taskdef name="CCLabel" classname="CCLabel"/>
<!-- Include the property file -->
<property file="build.properties"/>
<property name="labelName" value="${labelname}"/>
<!-- 1. Label the source -->
<target name="label">
<echo>Labeling</echo>
<CCLabel viewpath="${viewpath}"
labelName="${labelName}"
labelComment="${labelComment}"
directory="${labeldir}"/>
</target>
</project>
build.properties
Description: application/unknown-content-type-properties_auto_file
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
