blob: 9ede1b21b7e94172ddd777871ee1e0f58ebd82a2 [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>
39 </properties>
40
41 <build>
42 <plugins>
43 <plugin>
44 <artifactId>maven-resources-plugin</artifactId>
45 <version>2.6</version>
46 <executions>
47 <execution>
48 <id>copy-dockerfile</id>
49 <goals>
50 <goal>copy-resources</goal>
51 </goals>
52 <phase>validate</phase>
53 <configuration>
54 <outputDirectory>${project.basedir}/target/docker-stage</outputDirectory>
55 <resources>
56 <resource>
57 <directory>docker</directory>
58 <includes>
59 <include>Dockerfile</include>
60 <include>start.sh</include>
61 </includes>
62 <filtering>true</filtering>
63 </resource>
64 </resources>
65 </configuration>
66 </execution>
67 </executions>
68 </plugin>
69 <plugin>
70 <artifactId>maven-assembly-plugin</artifactId>
71 <version>3.1.0</version>
72 <configuration>
73 <outputDirectory>${project.basedir}/target/docker-stage</outputDirectory>
74 <descriptors>
75 <descriptor>docker/distribution.xml</descriptor>
76 </descriptors>
77 <tarLongFileMode>posix</tarLongFileMode>
78 </configuration>
79 <executions>
80 <execution>
81 <id>${assembly.id}</id>
82 <phase>package</phase>
83 <goals>
84 <goal>single</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89 <plugin>
90 <groupId>org.codehaus.groovy.maven</groupId>
91 <artifactId>gmaven-plugin</artifactId>
92 <version>1.0</version>
93 <executions>
94 <execution>
95 <phase>validate</phase>
96 <goals>
97 <goal>execute</goal>
98 </goals>
99 <configuration>
100 <source>${basedir}/../../TagVersion.groovy</source>
101 </configuration>
102 </execution>
103 </executions>
104 </plugin>
105 </plugins>
106 </build>
107
108 <profiles>
109 <profile>
110 <id>docker</id>
111 <build>
112 <plugins>
113 <plugin>
114 <groupId>io.fabric8</groupId>
115 <artifactId>docker-maven-plugin</artifactId>
116 <version>0.26.1</version>
117 <inherited>false</inherited>
118 <configuration>
119 <images>
120 <image>
121 <name>${image.name}</name>
122 <build>
123 <cleanup>try</cleanup>
124 <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir>
125 <tags>
126 <tag>${project.docker.latestminortag.version}</tag>
127 <tag>${project.docker.latestfulltag.version}</tag>
128 <tag>${project.docker.latesttagtimestamp.version}</tag>
129 </tags>
130 </build>
131 </image>
132 </images>
133 <verbose>true</verbose>
134 </configuration>
135 <executions>
136 <execution>
137 <id>generate-images</id>
138 <phase>package</phase>
139 <goals>
140 <goal>build</goal>
141 </goals>
142 </execution>
143 <execution>
144 <id>push-images</id>
145 <phase>${docker.push.phase}</phase>
146 <goals>
147 <goal>build</goal>
148 <goal>push</goal>
149 </goals>
150 </execution>
151 </executions>
152 </plugin>
153 </plugins>
154 </build>
155 </profile>
156 </profiles>
157</project>