2009-05-19 00:20:40 -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
|
|
|
|
|
|
|
|
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-06-27 11:11:20 -04:00
|
|
|
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
|
2011-08-02 12:37:57 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-06-27 11:11:20 -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">
|
2011-08-02 12:37:57 -04:00
|
|
|
<id>hadoop-src</id>
|
|
|
|
<formats>
|
2011-10-13 18:38:03 -04:00
|
|
|
<format>tar.gz</format>
|
2011-08-02 12:37:57 -04:00
|
|
|
</formats>
|
2011-10-13 18:38:03 -04:00
|
|
|
<includeBaseDirectory>true</includeBaseDirectory>
|
2011-08-02 12:37:57 -04:00
|
|
|
<fileSets>
|
2014-09-03 12:39:02 -04:00
|
|
|
<fileSet>
|
|
|
|
<directory>.</directory>
|
|
|
|
<includes>
|
|
|
|
<include>LICENCE.txt</include>
|
|
|
|
<include>README.txt</include>
|
|
|
|
<include>NOTICE.txt</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
2019-08-27 00:46:21 -04:00
|
|
|
<fileSet>
|
|
|
|
<directory>./licenses</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
</fileSet>
|
2011-08-02 12:37:57 -04:00
|
|
|
<fileSet>
|
2011-10-13 18:38:03 -04:00
|
|
|
<directory>.</directory>
|
2011-08-02 12:37:57 -04:00
|
|
|
<useDefaultExcludes>true</useDefaultExcludes>
|
|
|
|
<excludes>
|
2011-10-13 18:38:03 -04:00
|
|
|
<exclude>.git/**</exclude>
|
|
|
|
<exclude>**/.gitignore</exclude>
|
|
|
|
<exclude>**/.svn</exclude>
|
|
|
|
<exclude>**/*.iws</exclude>
|
|
|
|
<exclude>**/*.ipr</exclude>
|
|
|
|
<exclude>**/*.iml</exclude>
|
|
|
|
<exclude>**/.classpath</exclude>
|
|
|
|
<exclude>**/.project</exclude>
|
|
|
|
<exclude>**/.settings</exclude>
|
|
|
|
<exclude>**/target/**</exclude>
|
|
|
|
<!-- until the code that does this is fixed -->
|
2011-08-02 12:37:57 -04:00
|
|
|
<exclude>**/*.log</exclude>
|
|
|
|
<exclude>**/build/**</exclude>
|
2011-10-13 18:38:03 -04:00
|
|
|
<exclude>**/file:/**</exclude>
|
|
|
|
<exclude>**/SecurityAuth.audit*</exclude>
|
2020-04-14 08:31:46 -04:00
|
|
|
<exclude>patchprocess/**</exclude>
|
2011-08-02 12:37:57 -04:00
|
|
|
</excludes>
|
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
</assembly>
|