blob: e84c6868a58f5a66dc40277e46b7b1566772308b [file] [log] [blame]
Dan Timoney73be2112017-08-09 13:37:32 -04001<?xml version="1.0" encoding="UTF-8"?>
Dan Timoney912f98b2018-02-27 14:10:22 -05002<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">
3 <modelVersion>4.0.0</modelVersion>
Dan Timoney73be2112017-08-09 13:37:32 -04004
Dan Timoney74e4e8d2017-08-22 11:51:54 -04005 <parent>
6 <groupId>org.onap.ccsdk.distribution</groupId>
7 <artifactId>distribution-root</artifactId>
Dan Timoney486bd172021-03-22 13:52:45 -04008 <version>1.2.0-SNAPSHOT</version>
Dan Timoney74e4e8d2017-08-22 11:51:54 -04009 </parent>
Dan Timoney73be2112017-08-09 13:37:32 -040010
Dan Timoney74e4e8d2017-08-22 11:51:54 -040011 <artifactId>distribution-ubuntu</artifactId>
Dan Timoney912f98b2018-02-27 14:10:22 -050012 <packaging>pom</packaging>
Dan Timoney73be2112017-08-09 13:37:32 -040013
Dan Timoney912f98b2018-02-27 14:10:22 -050014 <name>ccsdk-distribution :: ubuntu</name>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040015 <description>Creates base ubuntu Docker container</description>
Dan Timoney912f98b2018-02-27 14:10:22 -050016 <organization>
17 <name>openECOMP</name>
18 </organization>
Dan Timoney73be2112017-08-09 13:37:32 -040019
Dan Timoney74e4e8d2017-08-22 11:51:54 -040020 <properties>
21 <image.name>onap/ccsdk-ubuntu-image</image.name>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040022 </properties>
Dan Timoney73be2112017-08-09 13:37:32 -040023
Dan Timoney74e4e8d2017-08-22 11:51:54 -040024 <build>
25 <plugins>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040026 <plugin>
27 <groupId>org.codehaus.groovy.maven</groupId>
28 <artifactId>gmaven-plugin</artifactId>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050029 <version>1.0</version>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040030 <executions>
31 <execution>
32 <phase>validate</phase>
33 <goals>
34 <goal>execute</goal>
35 </goals>
36 <configuration>
Timoney, Dan (dt5972)268c4ba2019-02-12 14:35:10 -050037 <source>${basedir}/../src/main/scripts/TagVersion.groovy</source>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040038 </configuration>
39 </execution>
40 </executions>
41 </plugin>
Dan Timoney73be2112017-08-09 13:37:32 -040042
Dan Timoney74e4e8d2017-08-22 11:51:54 -040043 <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><!-- here the phase you need -->
52 <phase>validate</phase>
53 <configuration>
54 <outputDirectory>${basedir}/target/docker-stage</outputDirectory>
55 <resources>
56 <resource>
57 <directory>src/main/docker</directory>
58 <includes>
59 <include>Dockerfile</include>
60 </includes>
61 <filtering>true</filtering>
62 </resource>
63 </resources>
64 </configuration>
65 </execution>
66 </executions>
67 </plugin>
68 </plugins>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040069 </build>
Dan Timoney73be2112017-08-09 13:37:32 -040070
Dan Timoney74e4e8d2017-08-22 11:51:54 -040071 <profiles>
72 <profile>
73 <id>docker</id>
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>io.fabric8</groupId>
78 <artifactId>docker-maven-plugin</artifactId>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050079 <version>0.34.0</version>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040080 <inherited>false</inherited>
81 <configuration>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040082 <images>
83 <image>
84 <name>${image.name}</name>
85 <build>
86 <cleanup>try</cleanup>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050087 <contextDir>${basedir}/target/docker-stage</contextDir>
Timoney, Dan (dt5972)b1ac7252018-12-14 13:00:43 -050088 <dockerFile>Dockerfile</dockerFile>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040089 <tags>
Timoney, Dan (dt5972)268c4ba2019-02-12 14:35:10 -050090 <tag>${project.docker.latestminortag.version}</tag>
91 <tag>${project.docker.latestfulltag.version}</tag>
92 <tag>${project.docker.latesttagtimestamp.version}</tag>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040093 </tags>
94 </build>
95 </image>
96 </images>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -050097 <verbose>${docker.verbose}</verbose>
98 <skipPush>${docker.skip.push}</skipPush>
Dan Timoney74e4e8d2017-08-22 11:51:54 -040099 </configuration>
100 <executions>
101 <execution>
Singal, Kapil (ks220y)b6e7d962020-12-17 14:37:06 -0500102 <id>build-push-images</id>
Dan Timoney74e4e8d2017-08-22 11:51:54 -0400103 <goals>
104 <goal>build</goal>
105 <goal>push</goal>
106 </goals>
107 </execution>
108 </executions>
109 </plugin>
Dan Timoney74e4e8d2017-08-22 11:51:54 -0400110 </plugins>
111 </build>
112 </profile>
113 </profiles>
Dan Timoney73be2112017-08-09 13:37:32 -0400114</project>