How to modify camunda extension properties?

When use Camunda,I do not want camunda:xxx

It is the export xml:

 <camunda:taskListener expression="..." event="create" />

I want it to look like that:

 <taskListener expression="..." event="create" />

Do you have any idea? thanks!

Hi @imdwpeng, as your wish produces invalid xml, I would not do it.

The xml is validated against a xsd schema and every element has to have a valid namespace.

Any reason for the change?

Cheers, Ingo

You’re right. I tried it. It doesn’t have to change. Thank you