~ubuntu-branches/ubuntu/trusty/httpcomponents-core/trusty

« back to all changes in this revision

Viewing changes to src/main/assembly/osgi-bin.xml

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2010-06-12 08:37:34 UTC
  • Revision ID: james.westby@ubuntu.com-20100612083734-1y8kp6qm4sjk60az
Tags: upstream-4.0.1
ImportĀ upstreamĀ versionĀ 4.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- 
 
2
   $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.0.1/src/main/assembly/osgi-bin.xml $
 
3
   $Revision: 784375 $
 
4
   $Date: 2009-06-13 13:30:54 +0200 (Sat, 13 Jun 2009) $
 
5
 
 
6
   ====================================================================
 
7
   Licensed to the Apache Software Foundation (ASF) under one
 
8
   or more contributor license agreements.  See the NOTICE file
 
9
   distributed with this work for additional information
 
10
   regarding copyright ownership.  The ASF licenses this file
 
11
   to you under the Apache License, Version 2.0 (the
 
12
   "License"); you may not use this file except in compliance
 
13
   with the License.  You may obtain a copy of the License at
 
14
 
 
15
     http://www.apache.org/licenses/LICENSE-2.0
 
16
 
 
17
   Unless required by applicable law or agreed to in writing,
 
18
   software distributed under the License is distributed on an
 
19
   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
20
   KIND, either express or implied.  See the License for the
 
21
   specific language governing permissions and limitations
 
22
   under the License.
 
23
   ====================================================================
 
24
 
 
25
   This software consists of voluntary contributions made by many
 
26
   individuals on behalf of the Apache Software Foundation.  For more
 
27
   information on the Apache Software Foundation, please see
 
28
   <http://www.apache.org/>.
 
29
 -->
 
30
<assembly>
 
31
    <id>osgi-bin</id>
 
32
    <formats>
 
33
        <format>tar.gz</format>
 
34
        <format>zip</format>
 
35
    </formats>
 
36
    <fileSets>
 
37
        <fileSet>
 
38
          <directory>httpcore-osgi/target</directory>
 
39
          <outputDirectory>/</outputDirectory>
 
40
          <includes>
 
41
            <include>*.jar</include>
 
42
          </includes>
 
43
          <excludes>
 
44
            <exclude>*sources.jar</exclude>
 
45
          </excludes>
 
46
        </fileSet>
 
47
        <fileSet>
 
48
          <directory></directory>
 
49
          <outputDirectory>/</outputDirectory>
 
50
          <includes>
 
51
            <include>README.txt</include>
 
52
            <include>LICENSE.txt</include>
 
53
            <include>NOTICE.txt</include>
 
54
            <include>RELEASE_NOTES.txt</include>
 
55
          </includes>
 
56
        </fileSet>
 
57
        <!-- Javadocs -->
 
58
        <fileSet>
 
59
          <directory>target/site/apidocs</directory>
 
60
          <outputDirectory>javadoc</outputDirectory>
 
61
        </fileSet>
 
62
        <!-- Tutorial (HTML) -->
 
63
        <fileSet>
 
64
          <directory>target/docbkx/html</directory>
 
65
          <outputDirectory>tutorial/html</outputDirectory>
 
66
        </fileSet>
 
67
        <fileSet>
 
68
          <directory>src/docbkx/resources/css</directory>
 
69
          <outputDirectory>tutorial/html/css</outputDirectory>
 
70
        </fileSet>
 
71
        <fileSet>
 
72
          <directory>src/docbkx/resources/images</directory>
 
73
          <outputDirectory>tutorial/html/images</outputDirectory>
 
74
        </fileSet>
 
75
        <!-- Examples: base module -->
 
76
        <fileSet>
 
77
          <directory>httpcore/src/examples/</directory>
 
78
          <outputDirectory>examples</outputDirectory>
 
79
          <includes>
 
80
            <include>**/*.java</include>
 
81
          </includes>
 
82
        </fileSet>
 
83
        <!-- Examples: NIO module -->
 
84
        <fileSet>
 
85
          <directory>httpcore-nio/src/examples/</directory>
 
86
          <outputDirectory>examples</outputDirectory>
 
87
          <includes>
 
88
            <include>**/*.java</include>
 
89
          </includes>
 
90
        </fileSet>
 
91
    </fileSets>
 
92
    <files>
 
93
        <!-- Tutorial (PDF) -->
 
94
        <file>
 
95
          <source>target/docbkx/pdf/index.pdf</source>
 
96
          <outputDirectory>tutorial/pdf</outputDirectory>
 
97
          <destName>httpcore-tutorial.pdf</destName>
 
98
        </file>
 
99
    </files>
 
100
</assembly>