mx:GCUpload

mx:GCUpload is a fork of ant-googlecode by Jonathan Fuerth.

Attributes

AttributeDescriptionRequired
usernameGoogle user name to authenticate as (this is just the username part; don't include the @gmail.com part)Yes
passwordCoogle Code password (not the same as the gmail password). Yes
projectnameGoogle Code project name to upload to. Yes
filenameThe local path of the file to upload. Yes
targetfilenameThe file name that this file will be given on Google Code. Yes
summarySummary of the upload. No
verboseIf set to true, this task will print debugging information to System.out as it progresses through its job No, default false
labelsThe labels that the download should have, separated by commas. Extra whitespace before and after each label name will not be considered part of the label name. No

Example

<mx:gcupload 
        username="googleuser" 
        password="secretpassword" 
        projectname="myproject" 
        filename="path/file.name" 
        targetfilename="version_0_file.name"
        summary="Version 0 of myproject"
        labels="Featured, Type-Package, OpSys-All" />