Welcome to the Jazz Community Forum
Is it possible to access build engine credentials in ant ?

4 answers

Actually there are a few 'built-in' properties that are always created and populated. The one you need is buildRequesterUserId. However the password or password file is NOT passed in for security reasons. So that value should be contained within the Ant script itself.
List of Built-in properties:
https://jazz.net/help-dev/clm/index.jsp?topic=%2Fcom.ibm.team.concert.dotnet.doc%2Ftopics%2Fr_build_prop.html&re=1&scope=null
List of Built-in properties:
https://jazz.net/help-dev/clm/index.jsp?topic=%2Fcom.ibm.team.concert.dotnet.doc%2Ftopics%2Fr_build_prop.html&re=1&scope=null
Hi,
there are no built in properties I am aware of. In general all properties set in the Build engine definition and the build definition are passed to ANT and accessible with ${property} like in
<zip>
You could try to use this feature to define the password file for the build engine or the build definition in a property. And then use that property in the build.

Hi,
there are no built in properties I am aware of. In general all properties set in the Build engine definition and the build definition are passed to ANT and accessible with ${property} like in
You could try to use this feature to define the password file for the build engine or the build definition in a property. And then use that property in the build.
there are no built in properties I am aware of. In general all properties set in the Build engine definition and the build definition are passed to ANT and accessible with ${property} like in
<zip>
You could try to use this feature to define the password file for the build engine or the build definition in a property. And then use that property in the build.

I should add that these properties only exist if you executed from a JBE.
Actually there are a few 'built-in' properties that are always created and populated. The one you need is buildRequesterUserId. However the password or password file is NOT passed in for security reasons. So that value should be contained within the Ant script itself.
List of Built-in properties:
https://jazz.net/help-dev/clm/index.jsp?topic=%2Fcom.ibm.team.concert.dotnet.doc%2Ftopics%2Fr_build_prop.html&re=1&scope=null
Hi,
there are no built in properties I am aware of. In general all properties set in the Build engine definition and the build definition are passed to ANT and accessible with ${property} like in
<zip>
You could try to use this feature to define the password file for the build engine or the build definition in a property. And then use that property in the build.