product-iots-community/distribution/emm-community/src/assembly/bin.xml
2021-06-10 07:35:48 +05:30

67 lines
2.3 KiB
XML

<!--
~ Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ WSO2 Inc. licenses this file to you 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. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<!DOCTYPE assembly [
<!ELEMENT assembly (id|formats|includeBaseDirectory|fileSets|dependencySets|files)*>
<!ELEMENT id (#PCDATA)>
<!ELEMENT formats (format)*>
<!ELEMENT format (#PCDATA)>
<!ELEMENT includeBaseDirectory (#PCDATA)>
<!ELEMENT fileSets (fileSet)*>
<!ELEMENT fileSet (directory|outputDirectory|excludes|includes|fileMode|filtered)*>
<!ELEMENT directory (#PCDATA)>
<!ELEMENT outputDirectory (#PCDATA)>
<!ELEMENT excludes (exclude)*>
<!ELEMENT exclude (#PCDATA)>
<!ELEMENT includes (include)*>
<!ELEMENT include (#PCDATA)>
<!ELEMENT fileMode (#PCDATA)>
<!ELEMENT filtered (#PCDATA)>
<!ELEMENT dependencySets (dependencySet)*>
<!ELEMENT dependencySet (outputDirectory|includes)*>
<!ELEMENT files (file)*>
<!ELEMENT file (source|outputDirectory|fileMode|filtered|destName)*>
<!ELEMENT source (#PCDATA)>
<!ELEMENT destName (#PCDATA)>
]>
<assembly>
<id>bin</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>../../p2-profile/emm/target/${entgra-iot-core}</directory>
<outputDirectory>${entgra-emm-community}</outputDirectory>
<excludes>
<exclude>**/repository/conf/deployment.toml</exclude>
</excludes>
</fileSet>
</fileSets>
<files>
<file>
<source>src/conf/deployment.toml</source>
<outputDirectory>${entgra-emm-community}/repository/conf/</outputDirectory>
</file>
</files>
</assembly>