remoteFolderMetadataRename
The remoteFolderMetadtaRename task renames folder metadata across all components and projects in a workspace and is compatible with the Jazz Build Engine environment.
By default, all components in the workspace are included in the folder search process. Exclude and include attributes can be specified to customize which components to use, and thereby, which folders will be processed. Folder metadata is stored in Jazz source control management as properties or name value pairs. To designate which folders to process and what properties to rename, nest remoteFolderMetadataRenameRule elements within the remoteFolderMetadataRename task.
The following table describes the remoteFolderMetadataRename attributes.
Attribute | Description | Required |
---|---|---|
repositoryAddress |
Address of the team repository to use. The value of this attribute is typically ${repositoryAddress} because that property is built-in when the Jazz® Build Engine is used. |
Yes |
userId |
User ID for authentication to the repository. Requires password or passwordFile to be set. |
Yes |
certificateFile |
The path to the file that contains the user's login certificate for authentication. Requires password or passwordFile to be set. You can specify certificateFile or repositoriesFile, but not both. |
No |
password |
Password for the user ID for authentication to the repository. Either password or passwordFile can be provided, but not both. |
No |
passwordFile |
The password file to use for authentication to the connection. You can
create a suitable password file by invoking the Jazz Build
Engine with the |
No |
smartCard |
Use of the connected smart card for authentication ( |
No |
failOnError |
If |
No |
verbose |
More message output. The default value is |
No |
exclude |
A list of component names to exclude from the process. By default, all components in the workspace are included. This list is used to identify components that are defined to the workspace, but that should not be included when searching for files to process. The exclude attribute is optional. Both the exclude and include attributes can be specified on a build to identify which components to process when searching for files. Multiple components can be specified as s comma separated list. |
No |
include |
A list of component names to include in the process. By default, all components in the workspace are included. This list is used to identify specific components that are defined to be workspace, that should be included when searching for files to process. The include attribute is optional. Both the exclude and include attributes can be specified on a build to identify which components to process when searching for files. Multiple components can be specified as a comma separated list. |
No |
workspaceUUID |
The UUID of the workspace for the build. The value of this attribute is typically ${team.scm.workspaceUUID} because the property is build-in when using the Jazz Build Engine. |
Yes |
remoteFolderMetadataRenameRule Elements
A remoteFolderMetadataRenameRule element is specified in the remoteFolderMetadataRename element. Each remoteFolderMetadataRenameRule element identifies a folder to process and a property to rename. At least one remoteFolderMetadataRenameRule element is required.
The following table describes the valid remoteFolderMetadataRenameRule attribute values.
Attribute | Description | Default | Required |
---|---|---|---|
match |
The regular expression to match against the zFolder name/zFile
name string. For example, you can specify |
None |
Yes |
projectName |
The name of an SCM project for which this rule applies. This attribute can be used to limit the scope of a rule to a specific project. By default, rules apply to all projects. |
None |
No |
name |
The name of the folder metadata property you want to modify when the regular expression matches the zFolder name string. |
None |
Yes |
rename | The new name of the folder metadata property. | None | Yes |
value |
The value of the folder metadata property you want to specify. Empty strings are allowed an do not result in a property being deleted. If a value is not specified, the property value will default to an empty string. |
None |
No |
- This task can be run in an eclipse enviornment or in a Jazz Build Engine environment.
- The default behavior is to perform a folder search for all components defined to the workspace.
- A property value can be specified to selectively rename properties with the specified value.
- Any folder changes made by this task in a Jazz Build Engine environment needs to be delivered via SCM facilities to become permanent.
Example
Rename a folder property
<!-- Folder Metadata Rename -->
<target name="remote" description="Folder Metadata Rename">
<im:remotefoldermetadatarename
repositoryAddress="${repositoryAddress}"
userId="${repositoryUserId}"
password="${repositoryPassword}"
workspaceUUID="${team.scm.workspaceUUID}"
include="com.ibm.ims.bpe"
>
<im:remoteFolderMetadataRenamerule match="^ASM$" name="package.folder.fmid" value="01" rename="old.folder.fmid"/>
</im:remotefoldermetadatarename>
</target>