I have created a eclipse plugin and its feature and update site... everything is under a master project. The strucute is
Test master
--test-plugin
--test-feature
--test-update site
I converted all the projects into maven with the help of Tycho and also i have some dependency problem so am in need of p2 repository so i created a local p2 repository as mentioned by Nick wilson Project dependency error when using my local p2 repository with necessary jar files here... but it supports only my platform windows 32 bit. It shows error in maven build at the master pom file for the environments here...
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
So, I came to know that we have to create a p2 repository which supports all the platform. How can i create it? Because after testing my plugin in my local system ,I have to put it in CI server(jenkins) it is in linux . There the build fails so i am very much in need of this.I googled many sites,everyone says something with the product file. but i dint create any product definition file . iguess i wont require product definition file because without it , the project will generate a eclipse plugin during maven build.Am new for eclipse plugin tycho and in confusion too .please help me....