Update to latest Frankfurt parent pom version
[sdnc/oam.git] / installation / admportal / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4     <parent>
5         <groupId>org.onap.ccsdk.parent</groupId>
6         <artifactId>odlparent-lite</artifactId>
7         <version>1.5.10-SNAPSHOT</version>
8     </parent>
9
10     <modelVersion>4.0.0</modelVersion>
11     <packaging>pom</packaging>
12     <groupId>org.onap.sdnc.oam</groupId>
13     <artifactId>installation-admportal</artifactId>
14     <version>1.8.5-SNAPSHOT</version>
15
16     <name>sdnc-oam :: installation :: ${project.artifactId}</name>
17     <description>Creates admportal Docker container</description>
18
19     <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.7.3</ccsdk.docker.version>
24         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
25     </properties>
26
27
28     <build>
29         <plugins>
30
31             <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.28.0</version>
50                 <inherited>false</inherited>
51                 <configuration>
52
53                     <images>
54                         <image>
55                             <name>${image.name}</name>
56                             <build>
57                                 <cleanup>try</cleanup>
58                                 <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
59                                 <dockerFile>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>process-sources</phase>
73                         <goals>
74                             <goal>build</goal>
75                         </goals>
76                     </execution>
77
78                     <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>
88
89             <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                     <execution>
133                         <id>copy-keystores</id>
134                         <goals>
135                             <goal>copy-resources</goal>
136                         </goals><!-- here the phase you need -->
137                         <phase>validate</phase>
138                         <configuration>
139                             <outputDirectory>${basedir}/target/docker-stage/opt/onap/sdnc/data/stores</outputDirectory>
140                             <resources>
141                                 <resource>
142                                     <directory>../src/main/stores</directory>
143                                     <includes>
144                                         <include>*.p12</include>
145                                     </includes>
146                                     <filtering>false</filtering>
147                                 </resource>
148                             </resources>
149                         </configuration>
150                     </execution>
151                 </executions>
152             </plugin>
153             <plugin>
154                 <artifactId>exec-maven-plugin</artifactId>
155                 <groupId>org.codehaus.mojo</groupId>
156                 <version>1.5.0</version>
157                 <executions>
158                     <execution>
159                         <id>Unzip admportal</id>
160                         <phase>generate-sources</phase>
161                         <goals>
162                             <goal>exec</goal>
163                         </goals>
164                         <configuration>
165                             <executable>/usr/bin/unzip</executable>
166                             <arguments>
167                                 <argument>-d</argument>
168                                 <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument>
169                                 <argument>../../admportal/target/*.zip</argument>
170                             </arguments>
171                         </configuration>
172                     </execution>
173
174                     <execution>
175                         <id>Copy admportal config</id>
176                         <phase>generate-sources</phase>
177                         <goals>
178                             <goal>exec</goal>
179                         </goals>
180                         <configuration>
181                             <executable>/bin/cp</executable>
182                             <arguments>
183                                 <argument>../../admportal/config/admportal.json</argument>
184                                 <argument>${basedir}/target/docker-stage/opt/onap/sdnc/data/properties</argument>
185                             </arguments>
186                         </configuration>
187                     </execution>
188
189                     <execution>
190                         <id>Copy admportal config1</id>
191                         <phase>generate-sources</phase>
192                         <goals>
193                             <goal>exec</goal>
194                         </goals>
195                         <configuration>
196                             <executable>/bin/cp</executable>
197                             <arguments>
198                                 <argument>../../admportal/config/admportal.log4js.json</argument>
199                                 <argument>${basedir}/target/docker-stage/opt/onap/sdnc/data/properties</argument>
200                             </arguments>
201                         </configuration>
202                     </execution>
203
204
205                     <execution>
206                         <id>change shell permissions</id>
207                         <phase>process-sources</phase>
208                         <goals>
209                             <goal>exec</goal>
210                         </goals>
211                         <configuration>
212                             <executable>/usr/bin/find</executable>
213                             <arguments>
214                                 <argument>${basedir}/target/docker-stage/opt/onap/sdnc</argument>
215                                 <argument>-name</argument>
216                                 <argument>*.sh</argument>
217                                 <argument>-exec</argument>
218                                 <argument>chmod</argument>
219                                 <argument>+x</argument>
220                                 <argument>{}</argument>
221                                 <argument>;</argument>
222                             </arguments>
223                         </configuration>
224                     </execution>
225                 </executions>
226             </plugin>
227
228
229         </plugins>
230
231     </build>
232     <organization>
233         <name>openECOMP</name>
234     </organization>
235 </project>