toolkitInit

The toolkitInit task initializes the Enterprise Extensions System Definition toolkit in a Jazz Build Engine environment.

The following table describes the toolkitInit 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 to be set.

Yes

password

Password for the user ID for authentication to the repository.

No

projectArea

The name of the project area where associated data set definitions, translators, and language definitions are stored.

No

Note:
  • This task replaces the init task used in the eclipse environment. You can only use either one.
  • Specify the toolkInit task before any other System Definition task is invoked.
  • Specify the toolkitTerm task when all System Definition tasks are complete.

Example

Initialize toolkit

<target name="init" description="Initialization">

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