diff options
-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> |