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> |
Xiaohua Zhang | 57b4c6f | 2019-03-08 02:06:19 +0000 | [diff] [blame] | 21 | <version>1.3.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> |
Xiaohua Zhang | 57b4c6f | 2019-03-08 02:06:19 +0000 | [diff] [blame] | 26 | <version>1.3.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> |
Ethan Lynn | c9effec | 2018-03-06 22:11:52 +0000 | [diff] [blame] | 30 | <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 Lynn | c9effec | 2018-03-06 22:11:52 +0000 | [diff] [blame] | 35 | </properties> |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 36 | <build> |
liboNet | efb2229 | 2019-03-20 03:10:03 +0800 | [diff] [blame^] | 37 | <pluginManagement> |
Ethan Lynn | c763387 | 2017-08-28 16:45:26 +0800 | [diff] [blame] | 38 | <plugins> |
| 39 | <plugin> |
liboNet | efb2229 | 2019-03-20 03:10:03 +0800 | [diff] [blame^] | 40 | <groupId>org.codehaus.mojo</groupId> |
| 41 | <artifactId>exec-maven-plugin</artifactId> |
| 42 | <version>1.1.1</version> |
| 43 | <configuration> |
| 44 | <executable>${project.basedir}/sonar.sh</executable> |
| 45 | <environmentVariables> |
| 46 | <!-- make mvn properties as env for our script --> |
| 47 | <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID> |
| 48 | <MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID> |
| 49 | <MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION> |
| 50 | </environmentVariables> |
| 51 | </configuration> |
Ethan Lynn | c763387 | 2017-08-28 16:45:26 +0800 | [diff] [blame] | 52 | </plugin> |
| 53 | </plugins> |
liboNet | efb2229 | 2019-03-20 03:10:03 +0800 | [diff] [blame^] | 54 | </pluginManagement> |
| 55 | <plugins> |
| 56 | <plugin> |
| 57 | <groupId>org.codehaus.mojo</groupId> |
| 58 | <artifactId>exec-maven-plugin</artifactId> |
| 59 | <version>1.1.1</version> |
| 60 | <executions> |
| 61 | <execution> |
| 62 | <id>clean phase script</id> |
| 63 | <phase>clean</phase> |
| 64 | <goals> |
| 65 | <goal>exec</goal> |
| 66 | </goals> |
| 67 | <configuration> |
| 68 | <arguments> |
| 69 | <argument>__</argument> |
| 70 | <argument>clean</argument> |
| 71 | </arguments> |
| 72 | </configuration> |
| 73 | </execution> |
| 74 | <execution> |
| 75 | <id>test script</id> |
| 76 | <phase>test</phase> |
| 77 | <goals> |
| 78 | <goal>exec</goal> |
| 79 | </goals> |
| 80 | <configuration> |
| 81 | <arguments> |
| 82 | <argument>__</argument> |
| 83 | <argument>test</argument> |
| 84 | </arguments> |
| 85 | </configuration> |
| 86 | </execution> |
| 87 | </executions> |
| 88 | </plugin> |
| 89 | <plugin> |
| 90 | <artifactId>maven-assembly-plugin</artifactId> |
| 91 | <configuration> |
| 92 | <appendAssemblyId>false</appendAssemblyId> |
| 93 | <descriptors> |
| 94 | <descriptor>assembly.xml</descriptor> |
| 95 | </descriptors> |
| 96 | </configuration> |
| 97 | <executions> |
| 98 | <execution> |
| 99 | <id>make-assembly</id> |
| 100 | <phase>package</phase> |
| 101 | <goals> |
| 102 | <goal>single</goal> |
| 103 | </goals> |
| 104 | </execution> |
| 105 | </executions> |
| 106 | </plugin> |
| 107 | </plugins> |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 108 | </build> |
liangke | 72d43b4 | 2018-05-02 13:56:29 +0800 | [diff] [blame] | 109 | </project> |