blob: bbf9239d8071152f0abb2e739f6f1956745e73b4 [file] [log] [blame]
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2019 IBM, Bell Canada.
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
Timoney, Dan (dt5972)743f1dc2019-03-14 13:55:01 -040017<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/xsd/maven-4.0.0.xsd">
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050018 <modelVersion>4.0.0</modelVersion>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000019
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050020 <parent>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040021 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050022 <artifactId>parent</artifactId>
Timoney, Dan (dt5972)1926b372019-09-11 10:54:30 -040023 <version>0.7.0-SNAPSHOT</version>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050024 <relativePath>../parent</relativePath>
25 </parent>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000026
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050027 <artifactId>distribution</artifactId>
28 <packaging>pom</packaging>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000029
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050030 <name>Blueprints Processor Distribution</name>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000031
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050032 <properties>
33 <assembly.id>maven</assembly.id>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040034 <name.space>org.onap.ccsdk.cds</name.space>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050035 <serviceArtifactName>blueprintsprocessor</serviceArtifactName>
36 <image.name>onap/ccsdk-blueprintsprocessor</image.name>
37 <docker.buildArg.https_proxy>${https_proxy}</docker.buildArg.https_proxy>
38 <docker.push.phase>deploy</docker.push.phase>
39 <docker.verbose>true</docker.verbose>
Timoney, Dan (dt5972)e99da762019-02-14 13:52:48 -050040 <ccsdk.project.version>${project.version}</ccsdk.project.version>
41 <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050042 </properties>
43
44 <dependencies>
45 <dependency>
Alexis de Talhouëtc90edac2019-03-25 13:04:18 -040046 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050047 <artifactId>application</artifactId>
48 </dependency>
49 </dependencies>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000050
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050051 <build>
52 <plugins>
53 <plugin>
54 <artifactId>maven-resources-plugin</artifactId>
55 <version>2.6</version>
56 <executions>
57 <execution>
58 <id>copy-dockerfile</id>
59 <goals>
60 <goal>copy-resources</goal>
61 </goals><!-- here the phase you need -->
62 <phase>validate</phase>
63 <configuration>
64 <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
65 <resources>
66 <resource>
67 <directory>src/main/docker</directory>
68 <includes>
69 <include>*</include>
70 </includes>
71 <filtering>true</filtering>
72 </resource>
73 </resources>
74 </configuration>
75 </execution>
76 </executions>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-antrun-plugin</artifactId>
81 <executions>
82 <execution>
83 <id>ant-test</id>
84 <phase>package</phase>
85 <configuration>
86 <tasks>
Singal, Kapil (ks220y)71f561e2019-09-18 10:05:39 -040087 <fixcrlf srcdir="${basedir}" eol="unix" includes="**/*.sh, **/*.source" />
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050088 </tasks>
89 </configuration>
90 <goals>
91 <goal>run</goal>
92 </goals>
93 </execution>
94 </executions>
95 </plugin>
SINGAL, KAPIL (ks220y)24f39fd2019-09-17 16:36:59 +000096 <plugin><!--build the final artifact for docker deployment -->
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -050097 <artifactId>maven-assembly-plugin</artifactId>
98 <version>3.1.0</version>
99 <configuration>
Timoney, Dan (dt5972)e99da762019-02-14 13:52:48 -0500100 <!-- <skipAssembly>${skip.assembly}</skipAssembly> -->
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500101 <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
102 <descriptors>
103 <descriptor>src/main/docker/distribution.xml</descriptor>
104 </descriptors>
105 <tarLongFileMode>posix</tarLongFileMode>
106 </configuration>
107 <executions>
108 <execution>
109 <id>${assembly.id}</id>
110 <phase>package</phase>
111 <goals>
112 <goal>single</goal>
113 </goals>
114 </execution>
115 </executions>
116 </plugin>
117 <plugin>
118 <groupId>org.codehaus.groovy.maven</groupId>
119 <artifactId>gmaven-plugin</artifactId>
120 <version>1.0</version>
121 <executions>
122 <execution>
123 <phase>validate</phase>
124 <goals>
125 <goal>execute</goal>
126 </goals>
127 <configuration>
Timoney, Dan (dt5972)e99da762019-02-14 13:52:48 -0500128 <source>${basedir}/../../../TagVersion.groovy</source>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500129 </configuration>
130 </execution>
131 </executions>
132 </plugin>
133
134 </plugins>
135 </build>
136
137 <profiles>
138 <profile>
139 <id>docker</id>
140 <build>
Timoney, Dan (dt5972)e99da762019-02-14 13:52:48 -0500141 <plugins>
142 <plugin>
143 <groupId>io.fabric8</groupId>
144 <artifactId>docker-maven-plugin</artifactId>
145 <version>0.26.1</version>
146 <inherited>false</inherited>
147 <configuration>
148 <images>
149 <image>
150 <name>${image.name}</name>
151 <build>
152 <cleanup>try</cleanup>
153 <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
154 <tags>
155 <tag>${project.docker.latestminortag.version}</tag>
156 <tag>${project.docker.latestfulltag.version}</tag>
157 <tag>${project.docker.latesttagtimestamp.version}</tag>
158 </tags>
159 </build>
160 </image>
161 </images>
162 <verbose>true</verbose>
163 </configuration>
164 <executions>
Steve Alphonse Siania5f9b6f2019-01-21 11:55:48 -0500165 <execution>
166 <id>generate-images</id>
167 <phase>package</phase>
168 <goals>
169 <goal>build</goal>
170 </goals>
171 </execution>
172 <execution>
173 <id>push-images</id>
174 <phase>${docker.push.phase}</phase>
175 <goals>
176 <goal>build</goal>
177 <goal>push</goal>
178 </goals>
179 </execution>
180 </executions>
181 </plugin>
182 </plugins>
183 </build>
184 </profile>
185
186 </profiles>
Timoney, Dan (dt5972)e99da762019-02-14 13:52:48 -0500187</project>