I've got an execution of the depends-maven-plugin, and, as a result, I have target/classes/META-INF/maven/dependencies.properties file. But that file does not end up in the bundle's JAR file.
I do not supply my own Include-Resource, I'm just using the defaults. <plugin> <groupId>org.apache.servicemix.tooling</groupId> <artifactId>depends-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <id>generate-depends-file</id> <phase>generate-resources</phase> <goals> <goal>generate-depends-file</goal> </goals> </execution> </executions> </plugin>