SLING-7351 Make the "dependencies.properties" visible for maven-failsafe-plugin
diff --git a/pom.xml b/pom.xml
index 9dabed6..2f3e3e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -465,6 +465,16 @@
                     <groupId>org.apache.servicemix.tooling</groupId>
                     <artifactId>depends-maven-plugin</artifactId>
                     <version>1.4.0</version>
+                    <configuration>
+                        <outputFile>${project.build.directory}/test-classes/META-INF/maven/dependencies.properties</outputFile>
+                    </configuration>
+                    <executions>
+                        <execution>
+                            <goals>
+                                <goal>generate-depends-file</goal>
+                            </goals>
+                        </execution>
+                    </executions>
                 </plugin>
             </plugins>
         </pluginManagement>