blob: a7b49678da7d2d204692d7f7d4e4fa0632f078c2 [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)84238e12019-03-18 17:23:08 -04002<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">
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05003
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -05004 <parent>
5 <groupId>org.onap.ccsdk.parent</groupId>
6 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)b47edc42019-03-25 17:32:41 -04007 <version>1.2.2-SNAPSHOT</version>
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -05008 </parent>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05009
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -050010 <modelVersion>4.0.0</modelVersion>
11 <packaging>pom</packaging>
12 <groupId>org.onap.sdnc.oam</groupId>
13 <artifactId>installation-admportal</artifactId>
Timoney, Dan (dt5972)b47edc42019-03-25 17:32:41 -040014 <version>1.5.1-SNAPSHOT</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050015
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -050016 <name>sdnc-oam :: installation :: ${project.artifactId}</name>
17 <description>Creates admportal Docker container</description>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050018
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -050019 <properties>
20 <image.name>onap/admportal-sdnc-image</image.name>
21 <sdnc.project.version>${project.version}</sdnc.project.version>
22 <sdnc.build.timestamp>${maven.build.timestamp}</sdnc.build.timestamp>
23 <ccsdk.docker.version>0.4-STAGING-latest</ccsdk.docker.version>
Timoney, Dan (dt5972)7b539402018-04-06 18:00:00 -040024 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -050025 </properties>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050026
27
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -050028 <build>
29 <plugins>
Dan Timoney8f773512017-04-24 16:30:26 -040030
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -050031 <plugin>
32 <groupId>org.codehaus.groovy.maven</groupId>
33 <artifactId>gmaven-plugin</artifactId>
34 <executions>
35 <execution>
36 <phase>validate</phase>
37 <goals>
38 <goal>execute</goal>
39 </goals>
40 <configuration>
41 <source>${basedir}/../TagVersion.groovy</source>
42 </configuration>
43 </execution>
44 </executions>
45 </plugin>
46 <plugin>
47 <groupId>io.fabric8</groupId>
48 <artifactId>docker-maven-plugin</artifactId>
49 <version>0.16.5</version>
50 <inherited>false</inherited>
51 <configuration>
Dan Timoney8f773512017-04-24 16:30:26 -040052
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -050053 <images>
54 <image>
55 <name>${image.name}</name>
56 <build>
57 <cleanup>try</cleanup>
58 <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
59 <dockerFile>${basedir}/target/docker-stage/Dockerfile</dockerFile>
60 <tags>
61 <tag>${project.docker.latestminortag.version}</tag>
62 <tag>${project.docker.latestfulltag.version}</tag>
63 <tag>${project.docker.latesttagtimestamp.version}</tag>
64 </tags>
65 </build>
66 </image>
67 </images>
68 </configuration>
69 <executions>
70 <execution>
71 <id>generate-images</id>
72 <phase>generate-sources</phase>
73 <goals>
74 <goal>build</goal>
75 </goals>
76 </execution>
Dan Timoney8f773512017-04-24 16:30:26 -040077
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -050078 <execution>
79 <id>push-images</id>
80 <phase>deploy</phase>
81 <goals>
82 <goal>build</goal>
83 <goal>push</goal>
84 </goals>
85 </execution>
86 </executions>
87 </plugin>
Dan Timoney8f773512017-04-24 16:30:26 -040088
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -050089 <plugin>
90 <artifactId>maven-resources-plugin</artifactId>
91 <version>2.6</version>
92 <executions>
93 <execution>
94 <id>copy-dockerfile</id>
95 <goals>
96 <goal>copy-resources</goal>
97 </goals><!-- here the phase you need -->
98 <phase>validate</phase>
99 <configuration>
100 <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
101 <resources>
102 <resource>
103 <directory>src/main/docker</directory>
104 <includes>
105 <include>Dockerfile</include>
106 </includes>
107 <filtering>true</filtering>
108 </resource>
109 </resources>
110 </configuration>
111 </execution>
112 <execution>
113 <id>copy-properties</id>
114 <goals>
115 <goal>copy-resources</goal>
116 </goals><!-- here the phase you need -->
117 <phase>validate</phase>
118 <configuration>
119 <outputDirectory>${basedir}/target/docker-stage/opt/onap/sdnc/data/properties</outputDirectory>
120 <resources>
121 <resource>
122 <directory>../src/main/properties</directory>
123 <includes>
124 <include>*.properties</include>
125 <include>*.properties.sdnctldb01</include>
126 </includes>
127 <filtering>false</filtering>
128 </resource>
129 </resources>
130 </configuration>
131 </execution>
132 </executions>
133 </plugin>
134 <plugin>
135 <artifactId>exec-maven-plugin</artifactId>
136 <groupId>org.codehaus.mojo</groupId>
137 <version>1.5.0</version>
138 <executions>
139 <execution>
140 <id>Unzip admportal</id>
141 <phase>generate-sources</phase>
142 <goals>
143 <goal>exec</goal>
144 </goals>
145 <configuration>
146 <executable>/usr/bin/unzip</executable>
147 <arguments>
148 <argument>-d</argument>
149 <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument>
150 <argument>../../admportal/target/*.zip</argument>
151 </arguments>
152 </configuration>
153 </execution>
Dan Timoney8f773512017-04-24 16:30:26 -0400154
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -0500155 <execution>
156 <id>Copy admportal config</id>
157 <phase>generate-sources</phase>
158 <goals>
159 <goal>exec</goal>
160 </goals>
161 <configuration>
162 <executable>/bin/cp</executable>
163 <arguments>
164 <argument>../../admportal/config/admportal.json</argument>
165 <argument>${basedir}/target/docker-stage/opt/onap/sdnc/data/properties</argument>
166 </arguments>
167 </configuration>
168 </execution>
Dan Timoney8f773512017-04-24 16:30:26 -0400169
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -0500170 <execution>
171 <id>Copy admportal config1</id>
172 <phase>generate-sources</phase>
173 <goals>
174 <goal>exec</goal>
175 </goals>
176 <configuration>
177 <executable>/bin/cp</executable>
178 <arguments>
179 <argument>../../admportal/config/admportal.log4js.json</argument>
180 <argument>${basedir}/target/docker-stage/opt/onap/sdnc/data/properties</argument>
181 </arguments>
182 </configuration>
183 </execution>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500184
185
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -0500186 <execution>
187 <id>change shell permissions</id>
188 <phase>process-sources</phase>
189 <goals>
190 <goal>exec</goal>
191 </goals>
192 <configuration>
193 <executable>/usr/bin/find</executable>
194 <arguments>
195 <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument>
196 <argument>-name</argument>
197 <argument>*.sh</argument>
198 <argument>-exec</argument>
199 <argument>chmod</argument>
200 <argument>+x</argument>
201 <argument>{}</argument>
202 <argument>;</argument>
203 </arguments>
204 </configuration>
205 </execution>
206 </executions>
207 </plugin>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500208
209
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -0500210 </plugins>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500211
Timoney, Dan (dt5972)d4b1b9d2019-02-14 16:38:27 -0500212 </build>
213 <organization>
214 <name>openECOMP</name>
215 </organization>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -0500216</project>