Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] OSGi and eclipse bundles

That worked surprisingly well actually. Thank you for the tip!

One thing though. It is fine to add every bundle to feature.xml. But is it possible for the feature to "suck" in all transitive pom/manifest dependencies into p2 without explicitly defining them in the pom?

For example:

<dependency>
 <groupId>org.hibernate</groupId>
 <artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
 <groupId>org.slf4j</groupId>
 <artifactId>slf4j-api</artifactId>
</dependency>

I need hibernate-validator which in turn needs slf4j. Is there a configuration that allow me to skip transitive dependencies.

Cheers,
-Kristoffer

Back to the top