Build local eclipse plugins using tycho pointing to local p2 repository
I am creating some Eclipse plugin and features that require third-party plugins and features. In order to include these dependencies into my project, I created a p2 layout repository. Note: My p2 artifacts are not Maven project... However, I am using Maven style building. Here is the pom.xml for the p2 repository <properties> <tycho-version>0.18.0</tycho-version> </properties> <repositories> <repository> <id>eclipse-platform-m6</id> <layout>p2</layout> <url>http://download.eclipse.org/eclipse/updates/3.8</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.eclipse.tycho