mirror of https://github.com/apache/druid.git
77 lines
3.4 KiB
XML
77 lines
3.4 KiB
XML
<?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.
|
|
-->
|
|
|
|
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
|
|
<id>source-release</id>
|
|
<formats>
|
|
<format>tar.gz</format>
|
|
</formats>
|
|
<fileSets>
|
|
<fileSet>
|
|
<directory>../</directory>
|
|
<outputDirectory/>
|
|
<useDefaultExcludes>true</useDefaultExcludes>
|
|
<excludes>
|
|
<!-- build output -->
|
|
<exclude>%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/).*${project.build.directory}.*]</exclude>
|
|
|
|
<!-- IDE -->
|
|
<exclude>%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?\.idea(/.*)?]</exclude>
|
|
<exclude>%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?[^/]*\.iml]</exclude>
|
|
<exclude>dev/eclipse_formatting.xml</exclude>
|
|
<exclude>dev/eclipse.importorder</exclude>
|
|
|
|
<!-- release-plugin temp files -->
|
|
<exclude>%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?pom\.xml\.releaseBackup]</exclude>
|
|
<exclude>%regex[(?!((?!${project.build.directory}/)[^/]+/)*src/)(.*/)?release\.properties]</exclude>
|
|
|
|
<exclude>.gitignore</exclude>
|
|
<exclude>.dockerignore</exclude>
|
|
<exclude>.travis.yml</exclude>
|
|
<exclude>README.md</exclude>
|
|
<exclude>README.BINARY</exclude>
|
|
<exclude>publications/**</exclude>
|
|
<exclude>upload.sh</exclude>
|
|
<exclude>web-console/node_modules/**</exclude>
|
|
<exclude>web-console/node/**</exclude>
|
|
<exclude>web-console/resources/**</exclude>
|
|
<exclude>web-console/public/**</exclude>
|
|
<exclude>web-console/lib/*.css</exclude>
|
|
<exclude>web-console/coordinator-console/**</exclude>
|
|
<exclude>web-console/pages/**</exclude>
|
|
<exclude>web-console/index.html</exclude>
|
|
<exclude>web-console/.tscache/**</exclude>
|
|
<exclude>web-console/tscommand-*.tmp.txt</exclude>
|
|
<exclude>web-console/licenses.json</exclude>
|
|
</excludes>
|
|
</fileSet>
|
|
<fileSet>
|
|
<directory>${project.build.directory}</directory>
|
|
<includes>
|
|
<include>git.version</include>
|
|
<include>README</include>
|
|
</includes>
|
|
<outputDirectory/>
|
|
</fileSet>
|
|
</fileSets>
|
|
</assembly>
|