Skip to main content
12-Amethyst
August 6, 2024
Solved

Want to load workflow and lifecycles using build.xml through ANT command

  • August 6, 2024
  • 2 replies
  • 985 views

RS_10128209_0-1722939139160.png

 

Prepared build.xml as below

<target name="deploy" depends="init">
<echo message="Deploying workflow ${workflow.file}..."/>
<java jar="" fork="true" failonerror="true">
<arg value="wt.load.LoadFromFile"/>
<arg value="${workflow.dir}/${workflow.file}"/>
<classpath>
<pathelement path="${wt.bin}"/>
</classpath>
</java>
</target>

 

 

Suggest the correct way to deploy data in windchill 12.0

Best answer by RS_10128209

Its got solved using CCD build framework

2 replies

Catalina
Community Moderator
August 12, 2024

Hi @RS_10128209 

Thank you for your question. 

Your post appears well documented but has not yet received any response. I am replying to raise awareness. Hopefully, another community member will be able to help.

Also, feel free to add any additional information you think might be relevant. It sometimes helps to have screenshots to better understand what you are trying to do.

 

Best regards,

Catalina | PTC Community Moderator
RS_1012820912-AmethystAuthorAnswer
12-Amethyst
September 3, 2024

Its got solved using CCD build framework