Description
sync-properties-maven-plugin only synchronizes properties that fit the pattern
@Parameter(defaultValue = ".*-version")
which means that properties like
<zeebe.version>8.5.7</zeebe.version>
https://github.com/apache/camel/blob/main/parent/pom.xml#L504C9-L504C45
are allowed but do not get synced to camel-dependencies. I'd like to add a check for properties not meeting that pattern and fix the zeebe.version-> zeebe-version so that it gets generated in camel-dependencies.