mirror of
https://github.com/apache/httpcomponents-client.git
synced 2025-02-16 23:16:33 +00:00
Removed dist assemblies
git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1518678 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c1dc4b0514
commit
9d2774d0ee
@ -1,94 +0,0 @@
|
||||
<!--
|
||||
$HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/src/main/assembly/bin-unix.xml $
|
||||
$Revision: 687166 $
|
||||
$Date: 2008-08-19 23:40:27 +0200 (Tue, 19 Aug 2008) $
|
||||
|
||||
====================================================================
|
||||
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.
|
||||
====================================================================
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals on behalf of the Apache Software Foundation. For more
|
||||
information on the Apache Software Foundation, please see
|
||||
<http://www.apache.org/>.
|
||||
-->
|
||||
<assembly>
|
||||
<id>bin</id>
|
||||
<formats>
|
||||
<format>tar.gz</format>
|
||||
<format>zip</format>
|
||||
</formats>
|
||||
<moduleSets>
|
||||
<moduleSet>
|
||||
<excludes>
|
||||
<exclude>org.apache.httpcomponents:httpclient-osgi</exclude>
|
||||
</excludes>
|
||||
<binaries>
|
||||
<outputDirectory>lib</outputDirectory>
|
||||
<unpack>false</unpack>
|
||||
<dependencySets>
|
||||
<dependencySet>
|
||||
<excludes>
|
||||
<exclude>net.sf.ehcache:*</exclude>
|
||||
<exclude>spy:*</exclude>
|
||||
<exclude>org.slf4j:*</exclude>
|
||||
</excludes>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
</binaries>
|
||||
</moduleSet>
|
||||
</moduleSets>
|
||||
<fileSets>
|
||||
<fileSet>
|
||||
<directory></directory>
|
||||
<outputDirectory></outputDirectory>
|
||||
<includes>
|
||||
<include>README.txt</include>
|
||||
<include>LICENSE.txt</include>
|
||||
<include>NOTICE.txt</include>
|
||||
<include>RELEASE_NOTES.txt</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
<!-- Javadocs -->
|
||||
<fileSet>
|
||||
<directory>target/site/apidocs</directory>
|
||||
<outputDirectory>javadoc</outputDirectory>
|
||||
</fileSet>
|
||||
<!-- Tutorial -->
|
||||
<fileSet>
|
||||
<directory>target/site/tutorial</directory>
|
||||
<outputDirectory>tutorial</outputDirectory>
|
||||
</fileSet>
|
||||
<!-- Base module -->
|
||||
<fileSet>
|
||||
<directory>httpclient/src/examples/</directory>
|
||||
<outputDirectory>examples</outputDirectory>
|
||||
<includes>
|
||||
<include>**/*.java</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
<!-- HttpMime module -->
|
||||
<fileSet>
|
||||
<directory>httpmime/src/examples/</directory>
|
||||
<outputDirectory>examples</outputDirectory>
|
||||
<includes>
|
||||
<include>**/*.java</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
@ -1,65 +0,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.
|
||||
====================================================================
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals on behalf of the Apache Software Foundation. For more
|
||||
information on the Apache Software Foundation, please see
|
||||
<http://www.apache.org />.
|
||||
-->
|
||||
<project name="assembly-postprocess" default="fixarchives" basedir=".">
|
||||
|
||||
<target name="fixarchives" depends="_eolcheck,fixzip,fixtgz">
|
||||
</target>
|
||||
|
||||
<target name="fixzip" unless="native.crlf">
|
||||
<property name="tmp.dir" location="${target}/tmp"/>
|
||||
<property name="zip.file" location="${target}/${package.name}.zip"/>
|
||||
<delete dir="${tmp.dir}" />
|
||||
<unzip src="${zip.file}" dest="${tmp.dir}"/>
|
||||
<fixcrlf srcdir="${tmp.dir}" eol="crlf" eof="remove" fixlast="false"
|
||||
includes="**/*.txt, **/*.xml, **/*.properties, **/*.java, **/*.html, **/*.css, **/*.apt, **/*.py, **/*.svg, **/*.xsl" />
|
||||
<zip destfile="${zip.file}" basedir="${tmp.dir}" duplicate="preserve" />
|
||||
<delete dir="${tmp.dir}" />
|
||||
</target>
|
||||
|
||||
<target name="fixtgz" unless="native.lf">
|
||||
<property name="tmp.dir" location="${target}/tmp"/>
|
||||
<property name="gz.file" location="${target}/${package.name}.tar.gz"/>
|
||||
<property name="tar.file" location="${target}/${package.name}.tar"/>
|
||||
<delete dir="${tmp.dir}" />
|
||||
<gunzip src="${gz.file}" dest="${tar.file}"/>
|
||||
<untar src="${tar.file}" dest="${tmp.dir}"/>
|
||||
<fixcrlf srcdir="${tmp.dir}" eol="lf" eof="remove" fixlast="false"
|
||||
includes="**/*.txt, **/*.xml, **/*.properties, **/*.java, **/*.html, **/*.css, **/*.apt, **/*.py, **/*.svg, **/*.xsl" />
|
||||
<tar destfile="${tar.file}" basedir="${tmp.dir}" longfile="gnu"/>
|
||||
<gzip src="${tar.file}" destfile="${gz.file}"/>
|
||||
<delete file="${tar.file}"/>
|
||||
<delete dir="${tmp.dir}"/>
|
||||
</target>
|
||||
|
||||
<!-- Determine if the native format is CRLF or LF (or neither) -->
|
||||
<target name="_eolcheck">
|
||||
<condition property="native.lf">
|
||||
<os family="unix"/>
|
||||
</condition>
|
||||
<condition property="native.crlf">
|
||||
<os family="dos"/>
|
||||
</condition>
|
||||
</target>
|
||||
</project>
|
@ -1,81 +0,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.
|
||||
====================================================================
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals on behalf of the Apache Software Foundation. For more
|
||||
information on the Apache Software Foundation, please see
|
||||
<http://www.apache.org/>.
|
||||
-->
|
||||
<assembly>
|
||||
<id>osgi-bin</id>
|
||||
<formats>
|
||||
<format>tar.gz</format>
|
||||
<format>zip</format>
|
||||
</formats>
|
||||
<fileSets>
|
||||
<fileSet>
|
||||
<directory>httpclient-osgi/target</directory>
|
||||
<outputDirectory></outputDirectory>
|
||||
<includes>
|
||||
<include>*.jar</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>*sources.jar</exclude>
|
||||
</excludes>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory></directory>
|
||||
<outputDirectory></outputDirectory>
|
||||
<includes>
|
||||
<include>README.txt</include>
|
||||
<include>LICENSE.txt</include>
|
||||
<include>NOTICE.txt</include>
|
||||
<include>RELEASE_NOTES.txt</include>
|
||||
<include>NTLM_SUPPORT.txt</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
<!-- Javadocs -->
|
||||
<fileSet>
|
||||
<directory>target/site/apidocs</directory>
|
||||
<outputDirectory>javadoc</outputDirectory>
|
||||
</fileSet>
|
||||
<!-- Tutorial -->
|
||||
<fileSet>
|
||||
<directory>target/site/tutorial</directory>
|
||||
<outputDirectory>tutorial</outputDirectory>
|
||||
</fileSet>
|
||||
<!-- Base module -->
|
||||
<fileSet>
|
||||
<directory>httpclient/src/examples/</directory>
|
||||
<outputDirectory>examples</outputDirectory>
|
||||
<includes>
|
||||
<include>**/*.java</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
<!-- HttpMime module -->
|
||||
<fileSet>
|
||||
<directory>httpmime/src/examples/</directory>
|
||||
<outputDirectory>examples</outputDirectory>
|
||||
<includes>
|
||||
<include>**/*.java</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
@ -1,48 +0,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.
|
||||
====================================================================
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals on behalf of the Apache Software Foundation. For more
|
||||
information on the Apache Software Foundation, please see
|
||||
<http://www.apache.org/>.
|
||||
-->
|
||||
<assembly>
|
||||
<id>src</id>
|
||||
<formats>
|
||||
<format>tar.gz</format>
|
||||
<format>zip</format>
|
||||
</formats>
|
||||
<fileSets>
|
||||
<!-- Release materials -->
|
||||
<fileSet>
|
||||
<directory></directory>
|
||||
<outputDirectory></outputDirectory>
|
||||
<excludes>
|
||||
<exclude>**/.*</exclude>
|
||||
<exclude>**/.*/**</exclude>
|
||||
<exclude>**/bin/**</exclude>
|
||||
<exclude>**/target/**</exclude>
|
||||
<exclude>**/local/**</exclude>
|
||||
<exclude>**/lib/**</exclude>
|
||||
<exclude>*.rdf</exclude>
|
||||
</excludes>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
Loading…
x
Reference in New Issue
Block a user