summaryrefslogtreecommitdiffstats
path: root/ansible-server/pom.xml
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2023-11-08 21:28:49 +0000
committerGerrit Code Review <gerrit@onap.org>2023-11-08 21:28:49 +0000
commit4c73c71183c1f445abc0832de5d4045fc383810e (patch)
treefdc58a55b822741c89961b3741a2d95b85c71d4a /ansible-server/pom.xml
parentae4d13533f8866c740b70ddc93fb535255fe10f5 (diff)
parent6fbbadb867a69d65761086789a0b411452e8ea3a (diff)
Merge "Update to version 2.6.1 of parent pom"1.6.0
Diffstat (limited to 'ansible-server/pom.xml')
-rw-r--r--ansible-server/pom.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/ansible-server/pom.xml b/ansible-server/pom.xml
index 15faf5ae..1a56fee6 100644
--- a/ansible-server/pom.xml
+++ b/ansible-server/pom.xml
@@ -71,6 +71,26 @@
</resources>
</configuration>
</execution>
+ <execution>
+ <id>copy-certificates</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>*.pem</include>
+ <include>*.md</include>
+ </includes>
+ <filtering>false</filtering>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
</executions>
</plugin>
<plugin>