Timoney, Dan (dt5972) | 84b361d | 2019-04-24 15:05:00 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START========================================== |
| 4 | =================================================================== |
| 5 | Copyright (C) 2018 IBM Intellectual Property. All rights reserved. |
| 6 | =================================================================== |
| 7 | |
| 8 | Unless otherwise specified, all software contained herein is licensed |
| 9 | under the Apache License, Version 2.0 (the License); |
| 10 | you may not use this software except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | ============LICENSE_END============================================ --> |
Dan Timoney | 8edec22 | 2020-04-07 11:51:20 -0400 | [diff] [blame] | 21 | |
Timoney, Dan (dt5972) | 84b361d | 2019-04-24 15:05:00 -0400 | [diff] [blame] | 22 | <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"> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onap.ccsdk.cds</groupId> |
Singal, Kapil (ks220y) | 8de37f9 | 2020-09-11 13:58:42 -0400 | [diff] [blame] | 27 | <artifactId>cds-ui</artifactId> |
Dan Timoney | ae01a98 | 2021-03-09 10:17:30 -0500 | [diff] [blame] | 28 | <version>1.2.0-SNAPSHOT</version> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 29 | <relativePath>..</relativePath> |
| 30 | </parent> |
| 31 | |
Singal, Kapil (ks220y) | 8de37f9 | 2020-09-11 13:58:42 -0400 | [diff] [blame] | 32 | <artifactId>cds-ui-application</artifactId> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 33 | <packaging>pom</packaging> |
| 34 | |
Singal, Kapil (ks220y) | 5844724 | 2020-12-15 19:02:17 -0500 | [diff] [blame] | 35 | <name>CDS UI - Application</name> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 36 | |
| 37 | <properties> |
| 38 | <image.name>onap/ccsdk-cds-ui</image.name> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 39 | </properties> |
| 40 | |
| 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <groupId>org.codehaus.groovy.maven</groupId> |
| 45 | <artifactId>gmaven-plugin</artifactId> |
Singal, Kapil (ks220y) | d18507f | 2020-09-02 10:43:21 -0400 | [diff] [blame] | 46 | <version>1.0</version> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 47 | <executions> |
| 48 | <execution> |
| 49 | <phase>validate</phase> |
| 50 | <goals> |
| 51 | <goal>execute</goal> |
| 52 | </goals> |
| 53 | <configuration> |
Alexis de Talhouët | a298b9e | 2019-03-26 12:44:59 -0400 | [diff] [blame] | 54 | <source>${project.basedir}/../../TagVersion.groovy</source> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 55 | </configuration> |
| 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
| 59 | </plugins> |
| 60 | </build> |
| 61 | |
| 62 | <profiles> |
Eltanany Shaaban | a8decc7 | 2020-11-24 19:09:52 +0200 | [diff] [blame] | 63 | <!--<profile> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 64 | <id>docker</id> |
| 65 | <build> |
| 66 | <plugins> |
| 67 | <plugin> |
| 68 | <groupId>io.fabric8</groupId> |
| 69 | <artifactId>docker-maven-plugin</artifactId> |
Singal, Kapil (ks220y) | fbbc9bc | 2020-09-16 10:49:28 -0400 | [diff] [blame] | 70 | <version>0.34.0</version> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 71 | <inherited>false</inherited> |
| 72 | <configuration> |
| 73 | <images> |
| 74 | <image> |
| 75 | <name>${image.name}</name> |
| 76 | <build> |
| 77 | <cleanup>try</cleanup> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 78 | <tags> |
| 79 | <tag>${project.docker.latestminortag.version}</tag> |
| 80 | <tag>${project.docker.latestfulltag.version}</tag> |
| 81 | <tag>${project.docker.latesttagtimestamp.version}</tag> |
| 82 | </tags> |
| 83 | </build> |
| 84 | </image> |
| 85 | </images> |
Singal, Kapil (ks220y) | fbbc9bc | 2020-09-16 10:49:28 -0400 | [diff] [blame] | 86 | <verbose>${docker.verbose}</verbose> |
| 87 | <skipPush>${docker.skip.push}</skipPush> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 88 | </configuration> |
| 89 | <executions> |
| 90 | <execution> |
Singal, Kapil (ks220y) | fbbc9bc | 2020-09-16 10:49:28 -0400 | [diff] [blame] | 91 | <id>build-push-images</id> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 92 | <goals> |
| 93 | <goal>build</goal> |
| 94 | <goal>push</goal> |
| 95 | </goals> |
| 96 | </execution> |
| 97 | </executions> |
| 98 | </plugin> |
| 99 | </plugins> |
| 100 | </build> |
Eltanany Shaaban | a8decc7 | 2020-11-24 19:09:52 +0200 | [diff] [blame] | 101 | </profile>--> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 102 | </profiles> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 103 | </project> |