blob: 56496f38a931c7ce7068ee4373f7ad848b83131b [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>
<!-- Add the client & mapreduce jars. Expects the client jar packaging phase to already be run,
which is determined by specification order in the pom. -->
<fileSet>
<directory>${project.basedir}/../phoenix-client/target</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>phoenix-client-${project.version}-${hbase.compat.version.string}.jar</include>
<!-- deprecated jar name, which we now have a symlink for -->
<include>phoenix-${project.version}-${hbase.compat.version.string}-client.jar</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.basedir}/../phoenix-server/target</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>phoenix-*-server.jar</include>
</includes>
</fileSet>
<!-- This is only necessary until maven fixes the intra-project dependency bug
in maven 3.0. Until then, we have to include the jars for sub-projects explicitly.
Otherwise, test jars are pulled in wrongly.
-->
<fileSet>
<directory>${project.basedir}/../phoenix-hadoop-compat/target/</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>phoenix-*.jar</include>
</includes>
<fileMode>0644</fileMode>
</fileSet>
<fileSet>
<directory>${project.basedir}/../phoenix-core/target/</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>phoenix-*.jar</include>
</includes>
<fileMode>0644</fileMode>
</fileSet>
<fileSet>
<directory>${project.basedir}/../phoenix-pherf/target/</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>phoenix-*.jar</include>
</includes>
<fileMode>0644</fileMode>
</fileSet>
<fileSet>
<directory>
${project.basedir}/../phoenix-hbase-compat-${hbase.compat.version}/target/
</directory>
<outputDirectory>lib</outputDirectory>
<includes>
<include>phoenix-*.jar</include>
</includes>
<fileMode>0644</fileMode>
</fileSet>
</fileSets>
</component>