How to update build definition property values with RTC Java API
I have a build definition to which I've added a property name. For specific build instances using that build definition, I want to pass a value on that property name to control certain aspects of the build. I would like the value use to be "one instance only". Can I programmatically remove the value using the RTC Java API, or some other technique?
|
One answer
Found it.
definition.setProperty("propertyName","");
definition = buildClient.save(definition, monitor);
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.