summaryrefslogtreecommitdiffstats
path: root/module.xml
blob: e7b58b1c3b5bc1174dfa0cf5110c8173db8e8c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="tools/antipede/resources/stylesheets/module.xsl"?>
<?xml-stylesheet type="text/css" href="tools/antipede/resources/stylesheets/module.css"?>
<module name="jakarta-poi">

  <url href="http://jakarta.apache.org/poi/"/>
  
  <cvs repository="jakarta"/> 

  <mailing-lists> 
    <mailing-list user="developer" 
                  mail="poi-dev@jakarta.apache.org" 
                  subscribe="poi-dev-subscribe@jakarta.apache.org" 
                  unsubscribe="poi-dev-unsubscribe@jakarta.apache.org"/>    
  </mailing-lists>    
   
  <description>
     The POI project consists of APIs for manipulating various file formats 
     based upon Microsoft's OLE 2 Compound Document format using pure Java.
  </description>

  <detailed>
     A common misconception is that POI writes Excel files. POI is the 
     name of the project. POI contains several components, one of which, 
     HSSF, writes Excel files. The following are components of the entire 
     POI project.POIFS is the oldest and most stable part of the project. 
     It is our port of the OLE 2 Compound Document Format to pure Java. 
     It supports both read and write functionality. All of our components 
     ultimately rely on it by definition. HSSF is our port of the 
     Microsoft Excel 97(-2002) file format (BIFF8) to pure Java. 
     It supports read and write capability. HDF is our port of the 
     Microsoft Word 97 file format to pure Java. 
     It supports read and write capability. This component is in the early 
     stages of design. Jump in! 
  </detailed>

  <what>
    <goal>just do it</goal>
  </what>
    
  <why>
    Why not?
  </why>
  
  <vendor>Apache Software Foundation</vendor>

  <licence>This software is released under the Apache Software License 1.1. 
           For detailed legal and licensing issues, please read the LICENSE.* files
           in the /legal directory.
  </licence>
  
  <credits>
    <credit>This software includes software developed by the Krysalis Project 
            (http://www.krysalis.org/).
    </credit>
  </credits>

  <project name="jakarta-poi">
  
     <version major="1"
             minor="9"
             fix  ="0"   
             tag="dev"/> 

    <package>org.apache.poi</package>
    
    <ant buildfile="centibuild.xml" basedir="." target="gump" vm="1.2">
      <property name="ant.home" reference="home" project="krysalis-centipede"/>
    </ant>
        
    <!-- Project jars POI *build* strictly depends on -->
    <!-- needed for build -->

    <depend project="xml-xerces"/>
    <depend project="xml-xalan2"/>   
    <depend project="jakarta-ant"/>
    <depend project="jakarta-ant-embed-optional"/>  
    <depend property="jxpath.jar" project="commons-jxpath"/>     

    <depend project="ant-contrib"/>
    <depend project="krysalis-ant-tasks"/>
    
    <depend project="krysalis-ruper"/>
    <depend project="commons-vfs"/>
    <depend project="commons-cli"/>
    <depend project="jakarta-regexp"/>
        
    
    <depend project="commons-jjar"/>

    <depend project="junit"/>
           
    <!-- needed for POI -->
    <depend project="commons-logging"/>
            
    <!-- Project jars POI build can use  -->    
    <option project="jakarta-log4j"/>
     
    <!-- Work dirs to be included in classpath  -->          
    <work nested="build/jakarta-poi/classes"/>
    <work nested="build/jakarta-poi/junit/classes"/>
    
    <!-- Build home  -->        
    <home nested="build/jakarta-poi"/>
    
    <!-- Source dirs with type  -->        
    <code type="java/plain" dir="src/java"/>
    <test type="test/junit" dir="src/testcases"/>
    <documentation type="xml/forrest" dir="src/documentation"/>
        
    <!-- POI jars - the result of the build  -->        
    <jar name="jakarta-poi.jar"            id="poi"/>
    
    <!-- POI Javadocs - location in the build dirs  -->         
    <javadoc parent="build/jakarta-poi/docs/apidocs"/>
    
    <!-- Getting ready for automatic site updates
    <deliver fromdir="build/jakarta-poi/docs" 
             tosite="jakarta-apache-org"
             todir="poi/" />    
    -->         
            
    <nag to="poi-dev@jakarta.apache.org"
         from="Gump :-( &lt;gump@jakarta.apache.org&gt;"/>
         
  </project>
  

</module>