Hi,
thx for that link, the thing is that that "locally_build_artificats" is not directly usefull to me
But then i did see the the section just below that:
that's exactly what i want and i describe in my previous email..
And i tested this and that works just fine, the thing is that for all the git repo's i use for many plugins the same version (and i have a version push over all the git repo's to set the project version and the manifest stuff)
So i can just do for most of my plugins this:
<filter>
<type>eclipse-plugin</type>
<id>sablo</id>
<restrictTo>
<version>${project.version}</version>
</restrictTo>
</filter>
So the project version of my main parent pom.xml of 1 git repo just fixes all the plugins to its own version.
This way i only have to push a new version for my specific branches or feature branches and the : <artifactId>target-platform-configuration</artifactId>
will force that tycho uses the right plugins for compiling this, and i guess it will also use that for building the product
So this way i don't need to have it in all the different manifest of all the plugins, but just in 1 place of a parent git. (and i kind of never have to change those version that can just be the same as the parent pom version)
I only need to make sure that that does list all the stuff that all the plugins do reference, but that doesn't change that often.
johan