listResourceUuid

The listResourceUuid task lists the UUIDs of the Enterprise Extensions resources, or z/OS data sets, defined to the specified project area.

The following table describes the listResourceUuid 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

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 -createPasswordFile argument. Only one password file can be specified. Either password or passwordFile can be provided, but not both.

No

smartCard

Use of the connected smart card for authentication (true or false). Requires userId to be set. For more information about smart card authentication, see Connecting to repositories and project areas.

No

failOnError

If true (default value), the task fails if it encounters an error. If false, some errors are ignored and the task is completed.

No

verbose

More message output. The default value is false.

No

projectArea

Name of the project area that contains the language definitions.

Yes

Note: The list of resource definition UUIDs is written to the build log.

Example

List UUID for resources:

<target name="main" description="List UUID for resources">

	<im:listResourceUuid
		repositoryAddress="${repositoryAddress}"
		userId="${repositoryUserid}"
		password="${repositoryPassword}"
		projectArea="${buildProjectArea}"
	/>
		
</target>