diff options
author | Dan Timoney <dtimoney@att.com> | 2023-08-16 14:06:36 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2023-11-08 11:18:10 -0500 |
commit | 6fbbadb867a69d65761086789a0b411452e8ea3a (patch) | |
tree | f94c8d87edca18fac7e62cbffcd57e918a05d66c /ansible-server/pom.xml | |
parent | 1dd9578b9109223a957fd1bfd1ded4f00d072614 (diff) |
Update to version 2.6.1 of parent pom
Update to version 2.6.1 of parent pom to pick up Argon SR2 versions and
support local build of ansible-server
Issue-ID: CCSDK-3944
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: I6d454ecc4ec3d1fecd10bf823ca5b828718e5fea
Diffstat (limited to 'ansible-server/pom.xml')
-rw-r--r-- | ansible-server/pom.xml | 20 |
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> |