diff options
author | Marcus G K Williams <marcus.williams@intel.com> | 2017-09-18 14:27:27 -0700 |
---|---|---|
committer | Marcus G K Williams <marcus.williams@intel.com> | 2017-09-18 14:29:27 -0700 |
commit | 1bc6ad35d813962f2d0c2218dfc69869085ebfde (patch) | |
tree | b104844c3c6e6b756bad54cb1d3436b024b7b7a1 | |
parent | e7224550b8049a81d097300c66e8dbd02dbc97a5 (diff) |
Copy logging config to docker-staging
Issue-Id: CCSDK-71
Change-Id: I1824228951dd38938216ee4bb242c516ed870e55
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
-rw-r--r-- | odlsli/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/odlsli/pom.xml b/odlsli/pom.xml index b176c985..53fc57a5 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> |