views:

75

answers:

1

I am using Maven with Tycho to build an eclipse plugin. Tycho generates the pom.xml file for Maven by inspecting the manifest file of the plugin. Now both the manifest file and the pom file have the version of the plugin and they need to be kept in sync manually. This is because I have done some customization in the generated pom file and cannot overwrite it every time I change the version in the manifest.

My question here is, is there a way to keep these versions in sync automatically using Tycho?

+1  A: 

Right now you have to keep them in sync manually. There is an open issue - TYCHO-214: OSGi release procedures and best practices - which should cover this. It's currently targeted for 0.9.0 - the next version.

Robert Munteanu