diff options
author | 2019-11-12 17:20:03 +0800 | |
---|---|---|
committer | 2020-01-20 16:31:46 +0800 | |
commit | 5f8e9379af90e81ad4a4d27b8cf6afb6edb40569 (patch) | |
tree | 17061ffe8fee62f458aee7defbb5faf3b3cccbee /hpa/assembly.xml | |
parent | 860d099f352eb762f1f181f189867ed2c3f322a9 (diff) |
Make hpa discovery as plugin
Issue-ID: MULTICLOUD-695
Change-Id: I04547cfe664dfed457a228c04dfdf71c96b0ded0
Signed-off-by: Haibin Huang <haibin.huang@intel.com>
Diffstat (limited to 'hpa/assembly.xml')
-rw-r--r-- | hpa/assembly.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/hpa/assembly.xml b/hpa/assembly.xml new file mode 100644 index 00000000..18126dc6 --- /dev/null +++ b/hpa/assembly.xml @@ -0,0 +1,37 @@ +<!-- + Copyright (c) 2019 Intel Corporation. All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at: + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +--> +<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> + <id>hpa</id> + <formats> + <format>zip</format> + </formats> + <fileSets> + <fileSet> + <includes> + <include>*/**</include> + </includes> + <excludes> + <exclude>**/*.pyc</exclude> + <exclude>target/**</exclude> + <exclude>docker/**</exclude> + <exclude>cover/**</exclude> + <exclude>pom.xml</exclude> + <exclude>assembly.xml</exclude> + <exclude>xunit-results.xml</exclude> + </excludes> + </fileSet> + </fileSets> + <baseDirectory>hpa</baseDirectory> +</assembly> |