2013-07-01 19:36:30 -04:00
|
|
|
<?xml version="1.0"?>
|
2015-01-30 23:36:38 -05:00
|
|
|
<!--
|
|
|
|
~ Druid - a distributed column store.
|
|
|
|
~ Copyright 2012 - 2015 Metamarkets Group Inc.
|
|
|
|
~
|
|
|
|
~ 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.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2015-08-18 14:28:30 -04:00
|
|
|
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
|
2013-09-13 21:41:33 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-08-18 14:28:30 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
|
2013-05-01 18:31:29 -04:00
|
|
|
<id>bin</id>
|
2013-07-01 19:36:30 -04:00
|
|
|
<formats>
|
|
|
|
<format>tar.gz</format>
|
|
|
|
</formats>
|
2013-05-01 18:31:29 -04:00
|
|
|
<fileSets>
|
2015-07-07 23:51:44 -04:00
|
|
|
<fileSet>
|
2015-10-30 11:01:14 -04:00
|
|
|
<directory>${project.build.directory}/druid_extensions</directory>
|
2015-07-07 23:51:44 -04:00
|
|
|
<includes>
|
|
|
|
<include>*/*</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
|
|
|
<exclude>mysql-metadata-storage/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
<outputDirectory>druid_extensions</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
2015-10-30 11:01:14 -04:00
|
|
|
<directory>${project.build.directory}/hadoop_druid_dependencies</directory>
|
2015-07-07 23:51:44 -04:00
|
|
|
<includes>
|
|
|
|
<include>*/*/*</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>hadoop_druid_dependencies</outputDirectory>
|
|
|
|
</fileSet>
|
2013-05-01 18:31:29 -04:00
|
|
|
<fileSet>
|
2013-05-04 23:04:16 -04:00
|
|
|
<directory>../examples/config</directory>
|
2013-05-01 18:31:29 -04:00
|
|
|
<includes>
|
2013-05-04 23:04:16 -04:00
|
|
|
<include>*</include>
|
2013-05-01 18:31:29 -04:00
|
|
|
</includes>
|
2013-05-04 23:04:16 -04:00
|
|
|
<outputDirectory>config</outputDirectory>
|
2013-05-01 18:31:29 -04:00
|
|
|
</fileSet>
|
2014-08-11 17:28:44 -04:00
|
|
|
<fileSet>
|
2014-11-21 18:36:42 -05:00
|
|
|
<directory>../examples/config/_common</directory>
|
2014-08-11 17:28:44 -04:00
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
2014-11-21 18:36:42 -05:00
|
|
|
<outputDirectory>config/_common</outputDirectory>
|
2014-08-11 17:28:44 -04:00
|
|
|
</fileSet>
|
2013-07-01 19:36:30 -04:00
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/config/broker</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>config/broker</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
2013-10-03 13:54:25 -04:00
|
|
|
<directory>../examples/config/coordinator</directory>
|
2013-07-01 19:36:30 -04:00
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
2013-10-03 13:54:25 -04:00
|
|
|
<outputDirectory>config/coordinator</outputDirectory>
|
2013-07-01 19:36:30 -04:00
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/config/realtime</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>config/realtime</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
2013-10-03 13:54:25 -04:00
|
|
|
<directory>../examples/config/historical</directory>
|
2013-07-01 19:36:30 -04:00
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
2013-10-03 13:54:25 -04:00
|
|
|
<outputDirectory>config/historical</outputDirectory>
|
2013-07-01 19:36:30 -04:00
|
|
|
</fileSet>
|
2013-10-09 18:42:39 -04:00
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/config/overlord</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>config/overlord</outputDirectory>
|
|
|
|
</fileSet>
|
2013-05-02 17:35:06 -04:00
|
|
|
<fileSet>
|
2013-05-04 23:04:16 -04:00
|
|
|
<directory>../examples/bin</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*sh</include>
|
|
|
|
</includes>
|
|
|
|
<fileMode>744</fileMode>
|
|
|
|
<outputDirectory>/</outputDirectory>
|
2013-07-01 19:36:30 -04:00
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
2013-05-04 23:04:16 -04:00
|
|
|
<directory>../examples/bin/examples</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>examples</outputDirectory>
|
|
|
|
</fileSet>
|
2013-07-01 19:36:30 -04:00
|
|
|
<fileSet>
|
2013-05-04 23:04:16 -04:00
|
|
|
<directory>../examples/bin/examples/twitter</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*sh</include>
|
|
|
|
</includes>
|
|
|
|
<fileMode>744</fileMode>
|
|
|
|
<outputDirectory>examples/twitter</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>../</directory>
|
2013-05-01 18:31:29 -04:00
|
|
|
<includes>
|
2013-05-02 17:35:06 -04:00
|
|
|
<include>LICENSE</include>
|
2013-05-01 18:31:29 -04:00
|
|
|
</includes>
|
2013-05-02 17:35:06 -04:00
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
<dependencySets>
|
|
|
|
<dependencySet>
|
2015-08-18 14:28:30 -04:00
|
|
|
<useProjectArtifact>false</useProjectArtifact>
|
2013-05-02 17:35:06 -04:00
|
|
|
<useTransitiveDependencies>true</useTransitiveDependencies>
|
2013-05-04 23:04:16 -04:00
|
|
|
<outputDirectory>lib</outputDirectory>
|
2015-08-18 14:28:30 -04:00
|
|
|
<excludes>
|
|
|
|
<exclude>io.druid:extensions-distribution</exclude>
|
|
|
|
</excludes>
|
|
|
|
</dependencySet>
|
|
|
|
<dependencySet>
|
|
|
|
<unpack>true</unpack>
|
|
|
|
<includes>
|
|
|
|
<include>io.druid:extensions-distribution</include>
|
|
|
|
</includes>
|
2013-05-02 17:35:06 -04:00
|
|
|
</dependencySet>
|
|
|
|
</dependencySets>
|
2013-05-04 23:04:16 -04:00
|
|
|
</assembly>
|