I have standard maven project with standard dependency type:
<dependencies>
<dependency>
<groupId>com.ogp</groupId>
<artifactId>com.pt.core.messages.api</artifactId>
<version>${coreVersion}</version>
</dependency>
</dependencies>
The issue is that above dependency is of type p2. Adding p2 repository in "repositories" section and using tycho does not help. How can I use p2 dependencies in standard maven projects (with jar packaging type, not eclipse-plugin type)?