Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 1 | <!-- |
| 2 | Copyright (c) 2017 Wind River Systems, Inc. |
Ethan Lynn | 2906f88 | 2018-01-15 10:32:43 +0800 | [diff] [blame] | 3 | Copyright (c) 2017-2018 VMware, Inc. |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 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 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | --> |
| 14 | <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
| 15 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 16 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> |
| 17 | <id>multivimbroker</id> |
| 18 | <formats> |
| 19 | <format>zip</format> |
| 20 | </formats> |
| 21 | <fileSets> |
| 22 | <fileSet> |
| 23 | <directory>multivimbroker</directory> |
| 24 | <outputDirectory>/multivimbroker</outputDirectory> |
| 25 | <includes> |
| 26 | <include>**/*.py</include> |
| 27 | <include>**/*.json</include> |
| 28 | <include>**/*.xml</include> |
| 29 | <include>**/*.wsdl</include> |
| 30 | <include>**/*.xsd</include> |
| 31 | <include>**/*.bpel</include> |
liangke | 159db20 | 2018-03-06 17:07:32 +0800 | [diff] [blame] | 32 | <include>**/*.yml</include> |
Xiaohua Zhang | 9d53698 | 2019-03-08 06:08:47 +0000 | [diff] [blame] | 33 | <include>**/*.crt</include> |
| 34 | <include>**/*.key</include> |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 35 | </includes> |
| 36 | </fileSet> |
| 37 | <fileSet> |
| 38 | <directory>logs</directory> |
| 39 | <outputDirectory>/logs</outputDirectory> |
| 40 | <includes> |
| 41 | <include>*.txt</include> |
| 42 | </includes> |
| 43 | </fileSet> |
| 44 | <fileSet> |
Ethan Lynn | 874dd5f | 2017-09-11 10:29:54 -0600 | [diff] [blame] | 45 | <directory>docker</directory> |
| 46 | <outputDirectory>/docker</outputDirectory> |
| 47 | <includes> |
| 48 | <include>*.sh</include> |
| 49 | <include>Dockerfile</include> |
| 50 | </includes> |
| 51 | </fileSet> |
| 52 | <fileSet> |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 53 | <directory>.</directory> |
| 54 | <outputDirectory>/</outputDirectory> |
| 55 | <includes> |
| 56 | <include>*.py</include> |
| 57 | <include>*.txt</include> |
| 58 | <include>*.sh</include> |
| 59 | <include>*.ini</include> |
| 60 | <include>*.md</include> |
liangke | 159db20 | 2018-03-06 17:07:32 +0800 | [diff] [blame] | 61 | <include>*.yml</include> |
Bin Yang | b1b0386 | 2017-02-22 11:15:28 +0800 | [diff] [blame] | 62 | </includes> |
| 63 | </fileSet> |
| 64 | </fileSets> |
| 65 | <baseDirectory>multivimbroker</baseDirectory> |
| 66 | <!--baseDirectory>multivimdriver-broker/multivimbroker</baseDirectory--> |
| 67 | </assembly> |