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
diff --git a/ansible-server/pom.xml b/ansible-server/pom.xml
index 15faf5a..1a56fee 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>