jdtCompileLogPublisher

The jdtCompileLogPublisher task adds one or more JDT (or ECJ) compiler logs as a contribution to a build result.

The table below describes jdtCompileLogPublisher task attributes.

Attribute Description Required

buildResultUUID

The UUID of the build result to update. The value of this attribute is typically ${buildResultUUID} because the property is built-in when using the Jazz Build Engine.

Yes

filePath

For the jdtCompileLogPublisher task, the path to the JDT compiler log file or directory of files to publish.

Yes

repositoryAddress

Address of the team repository to use. The value of this attribute is typically ${repositoryAddress} because that property is built-in when using the Jazz Build Engine.

Yes

userId

User ID to use.

Yes

componentMap

Path to a file that contains package-name-to-component mapping information.

No

componentName

The specific component to associate with this contribution.

No

failOnError

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

No

password

Password for the user ID, a zero-length string by default unless specified.

No

pdeBuild

If true, the publisher interprets the log directory structure as being generated by pde build. A plug-ins directory must appear in the hierarchy under the given filePath. The publisher groups packages by plugin.

No

passwordFile

The password file to use for the connection. You can create a suitable password file by invoking the Jazz Build Engine with the -createPasswordFile argument. You can only specify one password file.

No

verbose

Specifies more message output. The default is false.

No

Example

<jdtCompileLogPublisher repositoryAddress="${repositoryAddress}"
		                        userId="${userId}"
		                        password="${password}"
		                        buildResultUUID="${buildResultUUID}"
		                        filePath="compile.xml" />

Feedback