blob: b416cf44ec3abe416aef71b02b5940adb4cc81a9 [file] [log] [blame]
liboNet94d7d992019-03-21 08:01:55 +08001<!--
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>
liboNetf0944b02019-03-27 00:49:32 +080022 <groupId>org.onap.multicloud.framework</groupId>
liboNet94d7d992019-03-21 08:01:55 +080023 <artifactId>multicloud-framework-artifactbroker</artifactId>
Bin Yangfc82bdd2021-07-28 15:42:43 +080024 <version>1.7.0-SNAPSHOT</version>
liboNet94d7d992019-03-21 08:01:55 +080025 </parent>
26 <modelVersion>4.0.0</modelVersion>
liboNet74c55a72019-03-22 02:35:16 +080027 <artifactId>multicloud-framework-artifactbroker-main</artifactId>
liboNet94d7d992019-03-21 08:01:55 +080028
29 <name>${project.artifactId}</name>
30 <description>The main module of Policy Distribution that handles startup, lifecycle management, and parameters.</description>
31
liboNet41373a92019-04-03 02:26:05 +080032 <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 Rajewski7351cde2020-08-11 17:46:51 +020038 <dependency>
39 <groupId>javax.xml.bind</groupId>
40 <artifactId>jaxb-api</artifactId>
41 <version>2.3.1</version>
42 </dependency>
liboNet41373a92019-04-03 02:26:05 +080043 </dependencies>
44
liboNet94d7d992019-03-21 08:01:55 +080045 <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>