2013-07-01 19:36:30 -04:00
|
|
|
<?xml version="1.0"?>
|
2015-01-30 23:36:38 -05:00
|
|
|
<!--
|
2018-07-11 12:55:18 -04:00
|
|
|
~ 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
|
2015-01-30 23:36:38 -05:00
|
|
|
~
|
2018-07-11 12:55:18 -04:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2015-01-30 23:36:38 -05:00
|
|
|
~
|
2018-07-11 12:55:18 -04:00
|
|
|
~ 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-01-30 23:36:38 -05:00
|
|
|
-->
|
|
|
|
|
2018-10-17 21:37:01 -04:00
|
|
|
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
|
2013-09-13 21:41:33 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-10-17 21:37:01 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.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-11-02 18:29:48 -05:00
|
|
|
<directory>${project.build.directory}/extensions</directory>
|
2015-07-07 23:51:44 -04:00
|
|
|
<includes>
|
|
|
|
<include>*/*</include>
|
|
|
|
</includes>
|
2015-11-02 18:29:48 -05:00
|
|
|
<outputDirectory>extensions</outputDirectory>
|
2015-07-07 23:51:44 -04:00
|
|
|
</fileSet>
|
2016-01-06 00:27:52 -05:00
|
|
|
|
2015-07-07 23:51:44 -04:00
|
|
|
<fileSet>
|
2016-01-06 00:27:52 -05:00
|
|
|
<directory>${project.build.directory}/hadoop-dependencies</directory>
|
2015-07-07 23:51:44 -04:00
|
|
|
<includes>
|
|
|
|
<include>*/*/*</include>
|
|
|
|
</includes>
|
2016-01-06 00:27:52 -05:00
|
|
|
<outputDirectory>hadoop-dependencies</outputDirectory>
|
2015-07-07 23:51:44 -04:00
|
|
|
</fileSet>
|
2018-08-09 16:37:52 -04:00
|
|
|
<fileSet>
|
2019-05-06 22:11:13 -04:00
|
|
|
<directory>../examples/conf</directory>
|
2019-02-11 21:33:18 -05:00
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
2019-05-06 22:11:13 -04:00
|
|
|
<include>*/*</include>
|
|
|
|
<include>*/*/*</include>
|
|
|
|
<include>*/*/*/*</include>
|
|
|
|
<include>*/*/*/*/*</include>
|
2019-02-11 21:33:18 -05:00
|
|
|
</includes>
|
2019-05-06 22:11:13 -04:00
|
|
|
<outputDirectory>conf</outputDirectory>
|
2019-02-11 21:33:18 -05:00
|
|
|
</fileSet>
|
2016-01-06 00:27:52 -05:00
|
|
|
<fileSet>
|
2019-05-06 22:11:13 -04:00
|
|
|
<directory>../examples/quickstart/</directory>
|
2016-01-06 00:27:52 -05:00
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
2019-05-06 22:11:13 -04:00
|
|
|
<outputDirectory>quickstart</outputDirectory>
|
2016-01-06 00:27:52 -05:00
|
|
|
</fileSet>
|
2018-08-09 16:37:52 -04:00
|
|
|
<fileSet>
|
2019-05-06 22:11:13 -04:00
|
|
|
<directory>../examples/quickstart/tutorial</directory>
|
2018-08-09 16:37:52 -04:00
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
2019-05-06 22:11:13 -04:00
|
|
|
<outputDirectory>quickstart/tutorial</outputDirectory>
|
2018-08-09 16:37:52 -04:00
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/quickstart/tutorial/hadoop</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>quickstart/tutorial/hadoop</outputDirectory>
|
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/quickstart/tutorial/hadoop/docker</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>quickstart/tutorial/hadoop/docker</outputDirectory>
|
|
|
|
</fileSet>
|
2017-05-30 16:11:58 -04:00
|
|
|
<fileSet>
|
|
|
|
<directory>../examples/quickstart/protobuf</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
<outputDirectory>quickstart/protobuf</outputDirectory>
|
|
|
|
</fileSet>
|
2013-07-01 19:36:30 -04:00
|
|
|
<fileSet>
|
2016-01-06 00:27:52 -05:00
|
|
|
<directory>../examples/bin</directory>
|
2013-05-04 23:04:16 -04:00
|
|
|
<includes>
|
2016-01-06 00:27:52 -05:00
|
|
|
<include>*</include>
|
2013-05-04 23:04:16 -04:00
|
|
|
</includes>
|
|
|
|
<fileMode>744</fileMode>
|
2016-01-06 00:27:52 -05:00
|
|
|
<outputDirectory>bin</outputDirectory>
|
2013-05-04 23:04:16 -04:00
|
|
|
</fileSet>
|
|
|
|
<fileSet>
|
|
|
|
<directory>../</directory>
|
2013-05-01 18:31:29 -04:00
|
|
|
<includes>
|
2019-03-04 21:45:22 -05:00
|
|
|
<include>licenses/**</include>
|
2013-05-01 18:31:29 -04:00
|
|
|
</includes>
|
2013-05-02 17:35:06 -04:00
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
2019-03-04 21:45:22 -05:00
|
|
|
<files>
|
|
|
|
<file>
|
|
|
|
<source>../LICENSE.BINARY</source>
|
|
|
|
<outputDirectory>.</outputDirectory>
|
|
|
|
<destName>LICENSE</destName>
|
|
|
|
<lineEnding>keep</lineEnding>
|
|
|
|
</file>
|
|
|
|
<file>
|
|
|
|
<source>../NOTICE.BINARY</source>
|
|
|
|
<outputDirectory>.</outputDirectory>
|
|
|
|
<destName>NOTICE</destName>
|
|
|
|
<lineEnding>keep</lineEnding>
|
|
|
|
</file>
|
|
|
|
<file>
|
|
|
|
<source>../README.BINARY</source>
|
|
|
|
<outputDirectory>.</outputDirectory>
|
|
|
|
<destName>README</destName>
|
|
|
|
<lineEnding>keep</lineEnding>
|
|
|
|
</file>
|
|
|
|
</files>
|
2013-05-02 17:35:06 -04:00
|
|
|
<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>
|
2018-08-30 12:56:26 -04:00
|
|
|
<exclude>org.apache.druid:extensions-distribution</exclude>
|
2015-08-18 14:28:30 -04:00
|
|
|
</excludes>
|
|
|
|
</dependencySet>
|
|
|
|
<dependencySet>
|
|
|
|
<unpack>true</unpack>
|
|
|
|
<includes>
|
2018-08-30 12:56:26 -04:00
|
|
|
<include>org.apache.druid:extensions-distribution</include>
|
2015-08-18 14:28:30 -04:00
|
|
|
</includes>
|
2013-05-02 17:35:06 -04:00
|
|
|
</dependencySet>
|
|
|
|
</dependencySets>
|
2013-05-04 23:04:16 -04:00
|
|
|
</assembly>
|