liboNet | 94d7d99 | 2019-03-21 08:01:55 +0800 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
| 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 | |
| 17 | SPDX-License-Identifier: Apache-2.0 |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | <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"> |
| 21 | <parent> |
liboNet | f0944b0 | 2019-03-27 00:49:32 +0800 | [diff] [blame] | 22 | <groupId>org.onap.multicloud.framework</groupId> |
liboNet | 94d7d99 | 2019-03-21 08:01:55 +0800 | [diff] [blame] | 23 | <artifactId>multicloud-framework-artifactbroker</artifactId> |
Bin Yang | 077b4c0 | 2020-03-17 21:50:08 +0800 | [diff] [blame] | 24 | <version>1.5.2-SNAPSHOT</version> |
liboNet | 94d7d99 | 2019-03-21 08:01:55 +0800 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
liboNet | 74c55a7 | 2019-03-22 02:35:16 +0800 | [diff] [blame] | 27 | <artifactId>multicloud-framework-artifactbroker-main</artifactId> |
liboNet | 94d7d99 | 2019-03-21 08:01:55 +0800 | [diff] [blame] | 28 | |
| 29 | <name>${project.artifactId}</name> |
| 30 | <description>The main module of Policy Distribution that handles startup, lifecycle management, and parameters.</description> |
| 31 | |
liboNet | 41373a9 | 2019-04-03 02:26:05 +0800 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.onap.multicloud.framework</groupId> |
| 35 | <artifactId>multicloud-framework-artifactbroker-reception</artifactId> |
| 36 | <version>${project.version}</version> |
| 37 | </dependency> |
Lukasz Rajewski | 7351cde | 2020-08-11 17:46:51 +0200 | [diff] [blame^] | 38 | <dependency> |
| 39 | <groupId>javax.xml.bind</groupId> |
| 40 | <artifactId>jaxb-api</artifactId> |
| 41 | <version>2.3.1</version> |
| 42 | </dependency> |
liboNet | 41373a9 | 2019-04-03 02:26:05 +0800 | [diff] [blame] | 43 | </dependencies> |
| 44 | |
liboNet | 94d7d99 | 2019-03-21 08:01:55 +0800 | [diff] [blame] | 45 | <build> |
| 46 | <resources> |
| 47 | <!-- Output the version of the distribution service --> |
| 48 | <resource> |
| 49 | <directory>src/main/resources</directory> |
| 50 | <filtering>true</filtering> |
| 51 | <includes> |
| 52 | <include>**/version.txt</include> |
| 53 | </includes> |
| 54 | </resource> |
| 55 | <resource> |
| 56 | <directory>src/main/resources</directory> |
| 57 | <filtering>false</filtering> |
| 58 | <excludes> |
| 59 | <exclude>**/version.txt</exclude> |
| 60 | </excludes> |
| 61 | </resource> |
| 62 | </resources> |
| 63 | </build> |
| 64 | |
| 65 | </project> |