wuff
wuff copied to clipboard
Missing plugins : org.eclipse.equinox.p2.metadata.repository org.eclipse.equinox.p2.repository
Hi,
I have a RCP project that contains these 2 jars[1] declared in the plugins section. The plugin jar files are not copied in the output/xxx/plugins folder and not registered in the config file.
The funny fact is that it works for all 153 others plugin dependencies. It only misses these 2.
[1]: org.eclipse.equinox.p2.metadata.repository and org.eclipse.equinox.p2.repository
Thanks, Rafael Torres
I "fixed" it by declaring the dependency again inside of my build.gradle:
dependencies {
runtime "${eclipseMavenGroup}:org.eclipse.equinox.p2.repository:+"
runtime "${eclipseMavenGroup}:org.eclipse.equinox.p2.metadata.repository:+"
}
I'll have a look at the problem.