blob: 5c8ac17cf59b0f24006c3251a6c5dd4171bc5f7b [file] [log] [blame]
Brinda Santh807fbaa2019-09-23 10:10:58 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2018-2019 AT&T Intellectual Property.
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 -->
Brinda Santh807fbaa2019-09-23 10:10:58 -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">
18 <modelVersion>4.0.0</modelVersion>
19
20 <parent>
21 <groupId>org.onap.ccsdk.cds</groupId>
22 <artifactId>ms</artifactId>
23 <version>0.7.0-SNAPSHOT</version>
24 </parent>
25
26 <artifactId>py-executor</artifactId>
27
28 <name>Python Script Executor</name>
29 <description>Micro-service providing python environment with gRPC binding for python script execution</description>
30
31 <properties>
32 <assembly.id>maven</assembly.id>
33 <image.name>onap/ccsdk-py-executor</image.name>
34 <docker.push.phase>deploy</docker.push.phase>
35 <docker.verbose>true</docker.verbose>
36 <ccsdk.project.version>${project.version}</ccsdk.project.version>
37 <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp>
38 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
Dan Timoney6ca10bd2020-02-24 15:23:37 -050039 <sonar.skip>true</sonar.skip>
Brinda Santh807fbaa2019-09-23 10:10:58 -040040 </properties>
41
42 <build>
43 <plugins>
44 <plugin>
45 <artifactId>maven-resources-plugin</artifactId>
46 <version>2.6</version>
47 <executions>
48 <execution>
49 <id>copy-dockerfile</id>
50 <goals>
51 <goal>copy-resources</goal>
52 </goals>
53 <phase>validate</phase>
54 <configuration>
55 <outputDirectory>${project.basedir}/target/docker-stage</outputDirectory>
56 <resources>
57 <resource>
58 <directory>docker</directory>
59 <includes>
60 <include>Dockerfile</include>
61 <include>start.sh</include>
62 </includes>
63 <filtering>true</filtering>
64 </resource>
65 </resources>
66 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 <plugin>
71 <artifactId>maven-assembly-plugin</artifactId>
72 <version>3.1.0</version>
73 <configuration>
74 <outputDirectory>${project.basedir}/target/docker-stage</outputDirectory>
75 <descriptors>
76 <descriptor>docker/distribution.xml</descriptor>
77 </descriptors>
78 <tarLongFileMode>posix</tarLongFileMode>
79 </configuration>
80 <executions>
81 <execution>
82 <id>${assembly.id}</id>
83 <phase>package</phase>
84 <goals>
85 <goal>single</goal>
86 </goals>
87 </execution>
88 </executions>
89 </plugin>
90 <plugin>
91 <groupId>org.codehaus.groovy.maven</groupId>
92 <artifactId>gmaven-plugin</artifactId>
93 <version>1.0</version>
94 <executions>
95 <execution>
96 <phase>validate</phase>
97 <goals>
98 <goal>execute</goal>
99 </goals>
100 <configuration>
101 <source>${basedir}/../../TagVersion.groovy</source>
102 </configuration>
103 </execution>
104 </executions>
105 </plugin>
106 </plugins>
107 </build>
108
109 <profiles>
110 <profile>
111 <id>docker</id>
112 <build>
113 <plugins>
114 <plugin>
115 <groupId>io.fabric8</groupId>
116 <artifactId>docker-maven-plugin</artifactId>
117 <version>0.26.1</version>
118 <inherited>false</inherited>
119 <configuration>
120 <images>
121 <image>
122 <name>${image.name}</name>
123 <build>
124 <cleanup>try</cleanup>
125 <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
126 <tags>
127 <tag>${project.docker.latestminortag.version}</tag>
128 <tag>${project.docker.latestfulltag.version}</tag>
129 <tag>${project.docker.latesttagtimestamp.version}</tag>
130 </tags>
131 </build>
132 </image>
133 </images>
134 <verbose>true</verbose>
135 </configuration>
136 <executions>
137 <execution>
138 <id>generate-images</id>
139 <phase>package</phase>
140 <goals>
141 <goal>build</goal>
142 </goals>
143 </execution>
144 <execution>
145 <id>push-images</id>
146 <phase>${docker.push.phase}</phase>
147 <goals>
148 <goal>build</goal>
149 <goal>push</goal>
150 </goals>
151 </execution>
152 </executions>
153 </plugin>
154 </plugins>
155 </build>
156 </profile>
157 </profiles>
158</project>