Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | Copyright (c) 2017 Wind River Systems, Inc. |
Ethan Lynn | 2906f88 | 2018-01-15 10:32:43 +0800 | [diff] [blame^] | 4 | Copyright (c) 2017-2018 VMware, Inc. |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 5 | |
| 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 Lynn | c763387 | 2017-08-28 16:45:26 +0800 | [diff] [blame] | 15 | <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 Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 18 | <parent> |
Ethan Lynn | 6ea8e1b | 2017-10-13 12:55:11 +0800 | [diff] [blame] | 19 | <groupId>org.onap.multicloud.framework</groupId> |
| 20 | <artifactId>multicloud-framework</artifactId> |
Jessica Wagantall | 6e183a0 | 2017-11-18 18:20:31 -0800 | [diff] [blame] | 21 | <version>1.1.0-SNAPSHOT</version> |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 22 | </parent> |
| 23 | <modelVersion>4.0.0</modelVersion> |
Ethan Lynn | 6ea8e1b | 2017-10-13 12:55:11 +0800 | [diff] [blame] | 24 | <groupId>org.onap.multicloud.framework.broker</groupId> |
| 25 | <artifactId>multicloud-framework-broker</artifactId> |
Jessica Wagantall | 6e183a0 | 2017-11-18 18:20:31 -0800 | [diff] [blame] | 26 | <version>1.1.0-SNAPSHOT</version> |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 27 | <packaging>pom</packaging> |
Ethan Lynn | 6ea8e1b | 2017-10-13 12:55:11 +0800 | [diff] [blame] | 28 | <name>multicloud-framework-broker</name> |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 29 | <description>multivim broker</description> |
| 30 | <build> |
Ethan Lynn | c763387 | 2017-08-28 16:45:26 +0800 | [diff] [blame] | 31 | <plugins> |
| 32 | <plugin> |
| 33 | <artifactId>maven-assembly-plugin</artifactId> |
| 34 | <configuration> |
| 35 | <appendAssemblyId>false</appendAssemblyId> |
| 36 | <descriptors> |
| 37 | <descriptor>assembly.xml</descriptor> |
| 38 | </descriptors> |
| 39 | </configuration> |
| 40 | <executions> |
| 41 | <execution> |
| 42 | <id>make-assembly</id> |
| 43 | <phase>package</phase> |
| 44 | <goals> |
| 45 | <goal>single</goal> |
| 46 | </goals> |
| 47 | </execution> |
| 48 | </executions> |
| 49 | </plugin> |
| 50 | </plugins> |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 51 | </build> |
Ethan Lynn | c763387 | 2017-08-28 16:45:26 +0800 | [diff] [blame] | 52 | </project> |