Copy logging config to docker-staging

Issue-Id: CCSDK-71
Change-Id: I1824228951dd38938216ee4bb242c516ed870e55
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
diff --git a/odlsli/pom.xml b/odlsli/pom.xml
index b176c98..53fc57a 100644
--- a/odlsli/pom.xml
+++ b/odlsli/pom.xml
@@ -129,6 +129,25 @@
                         </configuration>
                     </execution>
                     <execution>
+                        <id>copy-config</id>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals><!-- here the phase you need -->
+                        <phase>validate</phase>
+                        <configuration>
+                            <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>src/main/resources</directory>
+                                    <includes>
+                                        <include>org.ops4j.pax.logging.cfg</include>
+                                    </includes>
+                                    <filtering>false</filtering>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                    <execution>
                         <id>copy-data</id>
                         <goals>
                             <goal>copy-resources</goal>