Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START========================================== |
| 3 | =================================================================== |
| 4 | Copyright (C) 2018 IBM Intellectual Property. All rights reserved. |
| 5 | =================================================================== |
| 6 | |
| 7 | Unless otherwise specified, all software contained herein is licensed |
| 8 | under the Apache License, Version 2.0 (the License); |
| 9 | you may not use this software except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END============================================ --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onap.ccsdk.parent</groupId> |
| 27 | <artifactId>spring-boot-starter-parent</artifactId> |
Alexis de Talhouët | af54051 | 2019-03-29 08:12:36 -0400 | [diff] [blame] | 28 | <version>1.2.2-SNAPSHOT</version> |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 29 | <relativePath/> |
| 30 | </parent> |
| 31 | |
| 32 | <groupId>org.onap.ccsdk.cds</groupId> |
| 33 | <artifactId>ui</artifactId> |
| 34 | <version>0.4.2-SNAPSHOT</version> |
| 35 | <packaging>pom</packaging> |
| 36 | |
| 37 | <name>cds-ui-parent</name> |
| 38 | <description>Creates Controller Design Studio UI Docker container</description> |
| 39 | |
| 40 | <properties> |
| 41 | <image.name>onap/ccsdk-cds-ui</image.name> |
| 42 | <ccsdk.project.version>${project.version}</ccsdk.project.version> |
| 43 | <ccsdk.distribution.version>${project.version}</ccsdk.distribution.version> |
| 44 | <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp> |
| 45 | <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format> |
| 46 | <docker.verbose>true</docker.verbose> |
| 47 | </properties> |
| 48 | |
| 49 | <modules> |
| 50 | <module>client</module> |
| 51 | <module>server</module> |
| 52 | <module>application</module> |
| 53 | </modules> |
| 54 | |
| 55 | </project> |