source: trunk/doc/3rd-party-components.txt @ 4481

Last change on this file since 4481 was 4481, checked in by Jari Häkkinen, 15 years ago

Addresses #1106. Added GPLv3 license. Renamed references to GPLv2 where appropriate.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Id
File size: 9.1 KB
Line 
1==================================================================
2$Id: 3rd-party-components.txt 4481 2008-09-07 14:09:23Z jari $
3
4  Copyright (C) 2005 Johan Enell, Nicklas Nordborg
5  Copyright (C) 2006 Jari Hakkinen, Nicklas Nordborg, Gregory Vincic
6  Copyright (C) 2007 Johan Enell, Jari Hakkinen, Nicklas Nordborg
7
8  This file is part of BASE - BioArray Software Environment.
9  Available at http://base.thep.lu.se/
10
11BASE is free software; you can redistribute it and/or
12modify it under the terms of the GNU General Public License
13as published by the Free Software Foundation; either version 3
14of the License, or (at your option) any later version.
15
16BASE is distributed in the hope that it will be useful,
17but WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19GNU General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with this program; if not, write to the Free Software
23Foundation, Inc., 59 Temple Place - Suite 330,
24Boston, MA  02111-1307, USA.
25==================================================================
26
27=================================
283rd-party components used by BASE
29=================================
30
31Here is list of 3rd-party components used by BASE. All the jar files
32needed are included in the <base>/lib directory or in
33<base>/www/plugins sub-directories for plug-ins based on others
34work. The URLs given here can be used if you need more information or
35need to update some component.
36
37
38Hibernate 3
39-----------
40An object/relational persistence and query service for Java. Shields
41us from most SQL and gives us database independece.
42
43More info : http://www.hibernate.org/
44Version   : 3.2.5.ga
45License   : LGPL (hibernate.license.txt)
46Jar files : hibernate3.jar, antlr-2.7.6.jar, asm.jar, asm-attrs.jar,
47            cglib-2.1.3.jar, commons-collections-2.1.1.jar, commons-logging-1.0.4.jar
48            dom4j-1.6.1.jar, ehcache-1.2.3.jar, jta.jar, c3p0-0.9.1.jar
49
50Note: Most of the jar files above are other 3rd-party components used by Hibernate.
51Base doesn't use these components directly.
52
53Log4j
54-----
55A logging system that makes it easy to turn on or off debugging just by
56editing a configuration file. This component is also used by Hibernate
57and we are using the same version that ships with Hibernate.
58
59More info : http://logging.apache.org/log4j/docs/
60Version   : 1.2.14
61License   : Apache License 2.0 (apache.license-2.0.txt)
62Jar files : log4j-1.2.14.jar
63
64JDOM
65----
66A library for parsing and generating XML files.
67
68More info : http://www.jdom.org/
69Version   : 1.0
70License   : Apache-style open source license (jdom.license.txt)
71Jar files : jdom.jar, jaxen-1.1-beta-7.jar, saxpath.jar
72
73
74Java Advanced Imaging (JAI)
75---------------------------
76An image toolkit from SUN. The package consists of a few jar files and
77libraries for native code for different operating systems. At the moment
78we are only using the jar files but we must also distribute the native
79code libraries in order to follow the license.
80
81More info : http://java.sun.com/products/java-media/jai/index.jsp
82Version   : 1.1.2
83License   : Sun Microsystems Binary Code License (jai.license.txt)
84Jar files : jai_core.jar, jai_codec.jar, mlibwrapper_jai.jar
85Other     : lbmlib_jai.so, checkmmx.exe, mlib_jai.dll, mlib_jai_mmx.dll
86
87
88Java Servlet API
89----------------
90Required for creating servlets and tag libraries. From SUN. This
91library is only required for compiling and are not included in the
92distribution. The web server/servlet container should already have
93these API installed (that's what makes it a servlet container).
94
95More info : http://java.sun.com/products/servlet/index.jsp
96Version   : 2.5
97License   : N/A
98Jar files : jsp-api.jar, servlet-api.jar
99
100
101Xerces
102------
103A toolkit for handling XML documents. From the Apache Software
104Foundation. These libraries are also needed by JDOM.
105
106More info : http://xml.apache.org/xerces2-j/index.html
107Version   : 2.9.0
108License   : Apache Software License (xerces.license.txt)
109Jar files : xerces-2.9.0.jar, xml-apis.jar
110
111
112MySQL Connector/J
113-----------------
114A JDBC driver for the MySQL database from MySQL. This library is only
115needed if you are using MySQL as your database.
116
117More info : http://www.mysql.com/products/connector/j/
118Version   : 5.1.6
119License   : GPLv2 (gpl-2.license.txt)
120Jar files : mysql-connector-java-5.1.6-bin.jar
121
122
123PostgreSQL JDBC driver
124----------------------
125A JDBC driver for the PostgreSQL database. This library is only
126needed if you are using PostgreSQL as your database.
127
128More info : http://jdbc.postgresql.org/
129Version   : 8.3.603
130License   : BSD License (postgres.license.txt)
131Jar files : postgresql-8.3-603.jdbc4.jar
132
133
134X-Doclet
135--------
136Used at compile-time only to generate the XML files needed by
137Hibernate for the database mapping. These libraries are not included in
138the distribution.
139
140More info : http://xdoclet.sourceforge.net/xdoclet/index.html
141Version   : 1.2
142License   : XDoclet License (xdoclet.license.txt)
143Jar files : xdoclet-1.2.2.jar, xdoclet-hibernate-module-1.2.2.jar,
144            xdoclet-xdoclet-module-1.2.2.jar, xjavadoc-1.1-j5-v3.jar,
145            commons-collections-2.1.1.jar, commons-logging-1.0.4.jar
146
147
148Java Math Expression Parser
149---------------------------
150Parses and evaluates mathematical expressions in string. Supports
151most operators and funcations as well as variables.
152
153More info : http://www.singularsys.com/jep/
154Version   : 2.4.0
155License   : GPLv2 (gpl-2.license.txt)
156Jar files : jep-2.4.0.jar
157
158
159JFreeChart
160----------
161Plotting package for bar charts, line charts, pie charts and xy plots.
162
163More info : http://www.jfree.org/
164Version   : 1.0.3
165License   : LGPL (lgpl.txt)
166Jar files : jfreechart-1.0.3.jar jcommon-1.0.6.jar
167
168
169Silk icon set
170-------------
171A very nice icon set containing 1000 icons. The entire icon set
172is available in the "misc" directory. We have converted the icons
173to GIF format (since we didn't want to scan through all web pages
174and replace .gif with .png). We have also created some new icons which
175are merely combinations of other icons, ie. taking an arrow on one icon
176an putting it on another.
177
178More info : http://www.famfamfam.com/lab/icons/silk/
179Version   : 1.3
180License   : Creative Commons Attribution 2.5 License
181            (http://creativecommons.org/licenses/by/2.5/)
182
183
184SvnAnt
185------
186An 'ant' task implementation for accessing subversion from the ant buildfile.
187
188More info : http://subclipse.tigris.org/svnant.html
189Version   : 1.2.0.RC1
190License   : Apache Software License 1.1 (apache.license.txt)
191Jar files : svnant.jar, svnkit.jar, svnClientAdapter.jar, svnjavahl.jar
192            ganymed.jar
193
194
195Docbook
196-------
197A set of DTD:s and stylesheets for creating documentation. We use
198the DocBook styler suite (see below) but has upgraded it to Docbook 4.5.
199
200More info: http://www.docbook.org/
201Version  : 4.5
202License  : docbook.license.txt
203Files    : Everything in lib/docbook/docbook
204
205
206Docbook styler guide
207--------------------
208An extension to docbook created by Dawid Weiss which simplifies
209file inclusion and building from ant.
210
211More info: http://www.cs.put.poznan.pl/dweiss/xml/projects/ant-docbook-styler/index.xml?lang=en
212Version  : 2004_06_22-21_12
213License  : docbook.styler.guide.txt
214Files    : Everything in lib/docbook except the 'docbook' subdirectory
215
216Example code syntax highlighter
217-------------------------------
218A javascript library that can be used to dynamically highlight
219the syntax in program examples. We have made minor changes to
220make it support the HTML produced by Docbook (ie. find the language
221from the 'language' attribute instead of the 'class' attribute).
222
223More info: http://www.dreamprojections.com/syntaxhighlighter
224Version  : 1.5.1
225License  : LGPL (lgpl.txt)
226Files    : Everything in the /doc/src/docbook/script and
227           /doc/src/docbook/css directories
228
229Affymetrix Fusion SDK
230---------------------
231Package for reading various Affymetrix file formats. We use a modified
232version that for some file formats can read from an InputStream instead
233of from a File object. This avoids a lot of copying and decompressing.
234
235More info: http://www.affymetrix.com/support/developer/fusion/index.affx
236         : (original version)
237         : http://dev.thep.lu.se/basehacks/wiki/AffxFusion
238         : (modified version)
239Version  : 1.09
240License  : LGPL (lgpl.txt)
241Files    : AffxFusion.jar
242
243TAR file support
244----------------
245Package for reading and writing TAR files.
246
247More info: http://www.trustice.com/java/tar/
248Version  : 2.5
249License  : tar.license.txt
250Files    : tar.jar
251
252BZIP file support
253-----------------
254Package for reading and writing BZIP files.
255
256More info: http://www.kohsuke.org/bzip2/
257Version  : unknown
258License  : Apache software license (apache.license.txt)
259Files    : bzip2.jar
260
261Axis2
262-----
263A core engine for webservices from Apache.
264
265More info : http://ws.apache.org/axis2/
266Version   : 1.3
267License   : Apache License 2.0 (apache.license-2.0.txt)
268Files     : Everything in the /lib/webservices directory
269
270SecondString
271------------
272A package with some fuzzy string matching algorithms developed
273by researchers at Carnegie Mellon University.
274
275More info : http://secondstring.sourceforge.net/
276Version   : CVS trunk checkout (2008-08-25)
277License   : University of Illinois/NCSA Open Source (secondstring-LICENSE.txt)
278Files     : secondstring.jar
279
Note: See TracBrowser for help on using the repository browser.