blob: c05d2a6519be6cc30fc16041fc60cc6ad08c433b [file] [log] [blame]
Bin Yangb1b03862017-02-22 11:15:28 +08001<?xml version="1.0"?>
2<!--
3 Copyright (c) 2017 Wind River Systems, Inc.
Ethan Lynn2906f882018-01-15 10:32:43 +08004 Copyright (c) 2017-2018 VMware, Inc.
Bin Yangb1b03862017-02-22 11:15:28 +08005
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at:
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-->
Ethan Lynnc7633872017-08-28 16:45:26 +080015<project
16 xmlns="http://maven.apache.org/POM/4.0.0"
17 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">
Bin Yangb1b03862017-02-22 11:15:28 +080018 <parent>
Ethan Lynn6ea8e1b2017-10-13 12:55:11 +080019 <groupId>org.onap.multicloud.framework</groupId>
20 <artifactId>multicloud-framework</artifactId>
liangke72d43b42018-05-02 13:56:29 +080021 <version>1.1.2-SNAPSHOT</version>
Bin Yangb1b03862017-02-22 11:15:28 +080022 </parent>
23 <modelVersion>4.0.0</modelVersion>
Ethan Lynn6ea8e1b2017-10-13 12:55:11 +080024 <groupId>org.onap.multicloud.framework.broker</groupId>
25 <artifactId>multicloud-framework-broker</artifactId>
liangke72d43b42018-05-02 13:56:29 +080026 <version>1.1.2-SNAPSHOT</version>
Bin Yangb1b03862017-02-22 11:15:28 +080027 <packaging>pom</packaging>
Ethan Lynn6ea8e1b2017-10-13 12:55:11 +080028 <name>multicloud-framework-broker</name>
Bin Yangb1b03862017-02-22 11:15:28 +080029 <description>multivim broker</description>
Ethan Lynnc9effec2018-03-06 22:11:52 +000030 <properties>
31 <encoding>UTF-8</encoding>
32 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
34 <nexusproxy>https://nexus.onap.org</nexusproxy>
Ethan Lynnc9effec2018-03-06 22:11:52 +000035 </properties>
Bin Yangb1b03862017-02-22 11:15:28 +080036 <build>
Ethan Lynnc7633872017-08-28 16:45:26 +080037 <plugins>
38 <plugin>
39 <artifactId>maven-assembly-plugin</artifactId>
40 <configuration>
41 <appendAssemblyId>false</appendAssemblyId>
42 <descriptors>
43 <descriptor>assembly.xml</descriptor>
44 </descriptors>
45 </configuration>
46 <executions>
47 <execution>
48 <id>make-assembly</id>
49 <phase>package</phase>
50 <goals>
51 <goal>single</goal>
52 </goals>
53 </execution>
54 </executions>
55 </plugin>
56 </plugins>
Bin Yangb1b03862017-02-22 11:15:28 +080057 </build>
liangke72d43b42018-05-02 13:56:29 +080058</project>