blob: af7888da8de6c90431969a5386b103ad76293e8e [file] [log] [blame]
<?xml version='1.0'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF 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.
-->
<component>
<fileSets>
<!-- Top level directories -->
<fileSet>
<!--Get misc project files -->
<directory>${project.basedir}/..</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>*.txt</include>
</includes>
</fileSet>
<!-- Copy the executable files from the bin directory -->
<fileSet>
<directory>${project.basedir}/../bin</directory>
<outputDirectory>bin</outputDirectory>
<fileMode>0755</fileMode>
<directoryMode>0755</directoryMode>
<includes>
<include>*.py</include>
<include>*.sh</include>
</includes>
<excludes>
<!-- The sandbox doesn't work with the binary distribution, and it
would complicate things a lot to make it work there, so we just
exclude it. -->
<exclude>*sandbox*</exclude>
</excludes>
</fileSet>
<!-- Copy the non-executable files from the bin directory -->
<fileSet>
<directory>${project.basedir}/../bin</directory>
<outputDirectory>bin</outputDirectory>
<fileMode>0644</fileMode>
<directoryMode>0755</directoryMode>
<excludes>
<exclude>*.py*</exclude>
<exclude>*.sh*</exclude>
<!-- The sandbox doesn't work with the binary distribution, and it
would complicate things a lot to make it work there, so we just
exclude it. -->
<exclude>*sandbox*</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>${project.basedir}/../dev</directory>
<fileMode>0644</fileMode>
<directoryMode>0755</directoryMode>
</fileSet>
<fileSet>
<directory>${project.basedir}/../docs</directory>
<fileMode>0644</fileMode>
<directoryMode>0755</directoryMode>
</fileSet>
<fileSet>
<directory>${project.basedir}/../examples</directory>
<fileMode>0644</fileMode>
<directoryMode>0755</directoryMode>
</fileSet>
<fileSet>
<directory>${project.basedir}/../phoenix-pherf/target</directory>
<outputDirectory>phoenix-pherf</outputDirectory>
<includes>
<include>*.zip</include>
</includes>
<fileMode>0644</fileMode>
<directoryMode>0755</directoryMode>
</fileSet>
</fileSets>
</component>