Update to latest Frankfurt parent pom version
[sdnc/oam.git] / installation / admportal / pom.xml
index 491af96..3936770 100644 (file)
@@ -1,35 +1,52 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 
     <parent>
-        <groupId>org.openecomp.sdnc.oam</groupId>
-        <artifactId>installation</artifactId>
-        <version>1.1.0-SNAPSHOT</version>
+        <groupId>org.onap.ccsdk.parent</groupId>
+        <artifactId>odlparent-lite</artifactId>
+        <version>1.5.10-SNAPSHOT</version>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>
     <packaging>pom</packaging>
-    <groupId>org.openecomp.sdnc.oam</groupId>
+    <groupId>org.onap.sdnc.oam</groupId>
     <artifactId>installation-admportal</artifactId>
-    <version>1.1.0-SNAPSHOT</version>
+    <version>1.8.5-SNAPSHOT</version>
 
-    <name>Installation - admportal</name>
+    <name>sdnc-oam :: installation :: ${project.artifactId}</name>
     <description>Creates admportal Docker container</description>
 
     <properties>
-        <image.name>openecomp/admportal-sdnc-image</image.name>
+        <image.name>onap/admportal-sdnc-image</image.name>
+        <sdnc.project.version>${project.version}</sdnc.project.version>
+        <sdnc.build.timestamp>${maven.build.timestamp}</sdnc.build.timestamp>
+        <ccsdk.docker.version>0.7.3</ccsdk.docker.version>
+        <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
     </properties>
 
 
     <build>
         <plugins>
 
-
+            <plugin>
+                <groupId>org.codehaus.groovy.maven</groupId>
+                <artifactId>gmaven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>validate</phase>
+                        <goals>
+                            <goal>execute</goal>
+                        </goals>
+                        <configuration>
+                            <source>${basedir}/../TagVersion.groovy</source>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
             <plugin>
                 <groupId>io.fabric8</groupId>
                 <artifactId>docker-maven-plugin</artifactId>
-                <version>0.16.5</version>
+                <version>0.28.0</version>
                 <inherited>false</inherited>
                 <configuration>
 
                             <build>
                                 <cleanup>try</cleanup>
                                 <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
-                                <dockerFile>${basedir}/target/docker-stage/Dockerfile</dockerFile>
+                                <dockerFile>Dockerfile</dockerFile>
                                 <tags>
-                                <tag>${project.version}</tag>
-                                <tag>latest</tag>
+                                    <tag>${project.docker.latestminortag.version}</tag>
+                                    <tag>${project.docker.latestfulltag.version}</tag>
+                                    <tag>${project.docker.latesttagtimestamp.version}</tag>
                                 </tags>
                             </build>
                         </image>
@@ -51,7 +69,7 @@
                 <executions>
                     <execution>
                         <id>generate-images</id>
-                        <phase>generate-sources</phase>
+                        <phase>process-sources</phase>
                         <goals>
                             <goal>build</goal>
                         </goals>
                         </goals><!-- here the phase you need -->
                         <phase>validate</phase>
                         <configuration>
-                            <outputDirectory>${basedir}/target/docker-stage/opt/openecomp/sdnc/data/properties</outputDirectory>
+                            <outputDirectory>${basedir}/target/docker-stage/opt/onap/sdnc/data/properties</outputDirectory>
                             <resources>
                                 <resource>
                                     <directory>../src/main/properties</directory>
                             </resources>
                         </configuration>
                     </execution>
+                    <execution>
+                        <id>copy-keystores</id>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals><!-- here the phase you need -->
+                        <phase>validate</phase>
+                        <configuration>
+                            <outputDirectory>${basedir}/target/docker-stage/opt/onap/sdnc/data/stores</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>../src/main/stores</directory>
+                                    <includes>
+                                        <include>*.p12</include>
+                                    </includes>
+                                    <filtering>false</filtering>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
                 </executions>
             </plugin>
             <plugin>
                 <artifactId>exec-maven-plugin</artifactId>
                 <groupId>org.codehaus.mojo</groupId>
-               <version>1.5.0</version>
+                <version>1.5.0</version>
                 <executions>
                     <execution>
                         <id>Unzip admportal</id>
                             <executable>/usr/bin/unzip</executable>
                             <arguments>
                                 <argument>-d</argument>
-                                <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc</argument>
+                                <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument>
                                 <argument>../../admportal/target/*.zip</argument>
                             </arguments>
                         </configuration>
                             <executable>/bin/cp</executable>
                             <arguments>
                                 <argument>../../admportal/config/admportal.json</argument>
-                                <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc/data/properties</argument>
+                                <argument>${basedir}/target/docker-stage/opt/onap/sdnc/data/properties</argument>
                             </arguments>
                         </configuration>
                     </execution>
                             <executable>/bin/cp</executable>
                             <arguments>
                                 <argument>../../admportal/config/admportal.log4js.json</argument>
-                                <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc/data/properties</argument>
+                                <argument>${basedir}/target/docker-stage/opt/onap/sdnc/data/properties</argument>
                             </arguments>
                         </configuration>
                     </execution>
                         <configuration>
                             <executable>/usr/bin/find</executable>
                             <arguments>
-                                <argument>${basedir}/target/docker-stage/opt/openecomp/sdnc</argument>
+                                <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument>
                                 <argument>-name</argument>
                                 <argument>*.sh</argument>
                                 <argument>-exec</argument>