1 | ================================================================== |
---|
2 | $Id: 3rd-party-components.txt 7152 2016-05-20 06:30:09Z nicklas $ |
---|
3 | |
---|
4 | Copyright (C) 2005 Johan Enell, Nicklas Nordborg |
---|
5 | Copyright (C) 2006 Jari Häkkinen, Nicklas Nordborg, Gregory Vincic |
---|
6 | Copyright (C) 2007 Johan Enell, Jari Häkkinen, Nicklas Nordborg |
---|
7 | |
---|
8 | This file is part of BASE - BioArray Software Environment. |
---|
9 | Available at http://base.thep.lu.se/ |
---|
10 | |
---|
11 | BASE is free software; you can redistribute it and/or |
---|
12 | modify it under the terms of the GNU General Public License |
---|
13 | as published by the Free Software Foundation; either version 3 |
---|
14 | of the License, or (at your option) any later version. |
---|
15 | |
---|
16 | BASE is distributed in the hope that it will be useful, |
---|
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
19 | GNU General Public License for more details. |
---|
20 | |
---|
21 | You should have received a copy of the GNU General Public License |
---|
22 | along with BASE. If not, see <http://www.gnu.org/licenses/>. |
---|
23 | ================================================================== |
---|
24 | |
---|
25 | ================================= |
---|
26 | 3rd-party components used by BASE |
---|
27 | ================================= |
---|
28 | |
---|
29 | Here is list of 3rd-party components used by BASE. All the jar files |
---|
30 | needed are included in the <base>/lib directory or in |
---|
31 | <base>/www/plugins sub-directories for plug-ins based on others |
---|
32 | work. The URLs given here can be used if you need more information or |
---|
33 | need to update some component. |
---|
34 | |
---|
35 | |
---|
36 | Hibernate |
---|
37 | --------- |
---|
38 | An object/relational persistence and query service for Java. Shields |
---|
39 | us from most SQL and gives us database independece. |
---|
40 | |
---|
41 | More info : http://www.hibernate.org/ |
---|
42 | Version : 5.0.7 |
---|
43 | License : LGPL (hibernate.license.txt) |
---|
44 | Jar files : hibernate-core-5.0.7.Final.jar, hibernate-commons-annotations-5.0.1.Final.jar, |
---|
45 | hibernate-jpa-2.1-api-1.0.0.Final.jar, |
---|
46 | antlr-2.7.7.jar, dom4j-1.6.1.jar, jandex-2.0.0.Final.jar, |
---|
47 | javassist-3.18.1-GA.jar, jboss-logging-3.3.0.Final.jar, |
---|
48 | c3p0-0.9.5-pre8.jar, hibernate-c3p0-5.0.7.Final.jar, mchange-commons-java-0.2.7.jar, |
---|
49 | hibernate-ehcache-5.0.7.Final.jar, slf4j-api.1.6.4.jar, slf4j-log4j12-1.6.4.jar, |
---|
50 | geronimo-jta_1.1_spec-1.1.1.jar |
---|
51 | |
---|
52 | Note: Most of the jar files above are other 3rd-party components used by Hibernate. |
---|
53 | BASE doesn't use these components directly. |
---|
54 | |
---|
55 | Ehcahce |
---|
56 | ------- |
---|
57 | Used by Hibernate for caching entities and query results. Is no |
---|
58 | longer part of the main Hibernate distribution. |
---|
59 | |
---|
60 | More info : http://ehcache.org/ |
---|
61 | Version : 2.6.3 |
---|
62 | License : Apache License 2.0 (apache.license-2.0.txt) |
---|
63 | Jar files : ehcache-core-2.6.3.jar |
---|
64 | |
---|
65 | |
---|
66 | Log4j |
---|
67 | ----- |
---|
68 | A logging system that makes it easy to turn on or off debugging just by |
---|
69 | editing a configuration file. |
---|
70 | |
---|
71 | More info : http://logging.apache.org/log4j/1.2/index.html |
---|
72 | Version : 1.2.17 |
---|
73 | License : Apache License 2.0 (apache.license-2.0.txt) |
---|
74 | Jar files : log4j-1.2.17.jar |
---|
75 | |
---|
76 | JDOM |
---|
77 | ---- |
---|
78 | A library for parsing and generating XML files. |
---|
79 | |
---|
80 | More info : http://www.jdom.org/ |
---|
81 | Version : 2.0.6 |
---|
82 | License : Apache-style open source license (jdom.license.txt) |
---|
83 | Jar files : jdom-2.0.6.jar, jaxen-1.1.6.jar |
---|
84 | |
---|
85 | |
---|
86 | Xerces |
---|
87 | ------ |
---|
88 | A toolkit for handling XML documents. From the Apache Software |
---|
89 | Foundation. These libraries are also needed by JDOM. |
---|
90 | |
---|
91 | More info : http://xml.apache.org/xerces2-j/index.html |
---|
92 | Version : 2.11.0 |
---|
93 | License : Apache Software License (xerces.license.txt) |
---|
94 | Jar files : xerces-2.11.0.jar, xml-apis.jar |
---|
95 | |
---|
96 | |
---|
97 | Java Advanced Imaging (JAI) |
---|
98 | --------------------------- |
---|
99 | An image toolkit from SUN. The package consists of a few jar files and |
---|
100 | libraries for native code for different operating systems. At the moment |
---|
101 | we are only using the jar files but we must also distribute the native |
---|
102 | code libraries in order to follow the license. |
---|
103 | |
---|
104 | More info : http://www.oracle.com/technetwork/java/current-142188.html |
---|
105 | Version : 1.1.3 |
---|
106 | License : Sun Microsystems Binary Code License (jai.license.txt) |
---|
107 | Jar files : jai_core.jar, jai_codec.jar |
---|
108 | |
---|
109 | |
---|
110 | Java Servlet API |
---|
111 | ---------------- |
---|
112 | Required for creating servlets and tag libraries. This |
---|
113 | library is only required for compiling and are not included in the |
---|
114 | distribution. The web server/servlet container should already have |
---|
115 | these API installed. We use files from the Tomcat 8 distribution. |
---|
116 | |
---|
117 | More info : http://tomcat.apache.org/whichversion.html |
---|
118 | Version : 3.1 |
---|
119 | License : N/A |
---|
120 | Jar files : jsp-api.jar, servlet-api.jar |
---|
121 | |
---|
122 | |
---|
123 | MySQL Connector/J |
---|
124 | ----------------- |
---|
125 | A JDBC driver for the MySQL database from MySQL. This library is only |
---|
126 | needed if you are using MySQL as your database. |
---|
127 | |
---|
128 | More info : http://www.mysql.com/products/connector/ |
---|
129 | Version : 5.1.35 |
---|
130 | License : GPLv2 (gpl-2.license.txt) |
---|
131 | Jar files : mysql-connector-java-5.1.35-bin.jar |
---|
132 | |
---|
133 | |
---|
134 | PostgreSQL JDBC driver |
---|
135 | ---------------------- |
---|
136 | A JDBC driver for the PostgreSQL database. This library is only |
---|
137 | needed if you are using PostgreSQL as your database. |
---|
138 | |
---|
139 | More info : http://jdbc.postgresql.org/ |
---|
140 | Version : 9.4.1201 |
---|
141 | License : BSD License (postgres.license.txt) |
---|
142 | Jar files : postgresql-9.4-1201.jdbc41.jar |
---|
143 | |
---|
144 | |
---|
145 | X-Doclet |
---|
146 | -------- |
---|
147 | Used at compile-time only to generate the XML files needed by |
---|
148 | Hibernate for the database mapping. These libraries are not included in |
---|
149 | the distribution. |
---|
150 | |
---|
151 | More info : http://xdoclet.sourceforge.net/xdoclet/index.html |
---|
152 | Version : 1.2 |
---|
153 | License : XDoclet License (xdoclet.license.txt) |
---|
154 | Jar files : xdoclet-1.2.2.jar, xdoclet-hibernate-module-1.2.2.jar, |
---|
155 | xdoclet-xdoclet-module-1.2.2.jar, xjavadoc-1.1-j5-v3.jar, |
---|
156 | commons-collections-2.1.1.jar, commons-logging-1.0.4.jar |
---|
157 | |
---|
158 | |
---|
159 | Java Math Expression Parser |
---|
160 | --------------------------- |
---|
161 | Parses and evaluates mathematical expressions in string. Supports |
---|
162 | most operators and funcations as well as variables. |
---|
163 | |
---|
164 | More info : http://www.singularsys.com/jep/ |
---|
165 | Version : 2.4.0 |
---|
166 | License : GPLv2 (gpl-2.license.txt) |
---|
167 | Jar files : jep-2.4.0.jar |
---|
168 | |
---|
169 | |
---|
170 | JFreeChart |
---|
171 | ---------- |
---|
172 | Plotting package for bar charts, line charts, pie charts and xy plots. |
---|
173 | |
---|
174 | More info : http://www.jfree.org/jfreechart/ |
---|
175 | Version : 1.0.19 |
---|
176 | License : LGPL (lgpl.txt) |
---|
177 | Jar files : jfreechart-1.0.19.jar jcommon-1.0.23.jar |
---|
178 | |
---|
179 | |
---|
180 | Apache HttpComponents |
---|
181 | --------------------- |
---|
182 | Package for doing work with HTTP (eg. downloading files). |
---|
183 | |
---|
184 | More info : http://hc.apache.org/ |
---|
185 | Version : 4.4.1 |
---|
186 | License : Apache License 2.0 (apache.license-2.0.txt) |
---|
187 | Jar files : httpclient-4.4.1.jar, httpcore-4.4.1.jar, commons-codec-1.9.jar, |
---|
188 | commons-logging-1.2.jar |
---|
189 | |
---|
190 | Apache Commons Email |
---|
191 | --------------------- |
---|
192 | Package for sending email. Depends on JavaMail 1.5. |
---|
193 | |
---|
194 | More info : http://commons.apache.org/email/ |
---|
195 | Version : 1.3.3 |
---|
196 | License : Apache License 2.0 (apache.license-2.0.txt) |
---|
197 | Jar files : commons-email-1.3.3.jar |
---|
198 | |
---|
199 | |
---|
200 | JavaMail |
---|
201 | --------- |
---|
202 | Low-level package for sending email. Used by Apache commons email. |
---|
203 | |
---|
204 | More info : https://java.net/projects/javamail/pages/Home |
---|
205 | Version : 1.5.3 |
---|
206 | License : Common Development and Distribution License (CDDL) v1.1 and GNU General Public License (GPL) v2 with Classpath Exception (javax-mail-LICENSE.txt) |
---|
207 | Jar files : javax-mail-1.5.3.jar |
---|
208 | |
---|
209 | |
---|
210 | jBCrypt |
---|
211 | ------- |
---|
212 | Package for safe encryption of passwords using the 'bcrypt' algorithm. |
---|
213 | |
---|
214 | More info : http://www.mindrot.org/projects/jBCrypt/ |
---|
215 | Version : 0.4 |
---|
216 | License : ISC/BSD licence (jbcrypt-license.txt) |
---|
217 | Jar files : None. Distributed as source only. All code is in net/sf/basedb/util/bcrypt/BCrypt.java |
---|
218 | |
---|
219 | JSON.simple |
---|
220 | ----------- |
---|
221 | JSON.simple is a simple Java toolkit for JSON. You can use JSON.simple to encode or decode JSON text. |
---|
222 | |
---|
223 | More info : http://code.google.com/p/json-simple/ |
---|
224 | Version : 1.1.1 |
---|
225 | License : Apache License 2.0 (apache.license-2.0.txt) |
---|
226 | Jar files : json-simple-1.1.1.jar |
---|
227 | |
---|
228 | |
---|
229 | Silk icon set |
---|
230 | ------------- |
---|
231 | A very nice icon set containing 1000 icons. The entire icon set |
---|
232 | is available in the "misc" directory. We have converted the icons |
---|
233 | to GIF format (since we didn't want to scan through all web pages |
---|
234 | and replace .gif with .png). We have also created some new icons which |
---|
235 | are merely combinations of other icons, ie. taking an arrow on one icon |
---|
236 | an putting it on another. |
---|
237 | |
---|
238 | More info : http://www.famfamfam.com/lab/icons/silk/ |
---|
239 | Version : 1.3 |
---|
240 | License : Creative Commons Attribution 2.5 License |
---|
241 | (http://creativecommons.org/licenses/by/2.5/) |
---|
242 | |
---|
243 | |
---|
244 | SvnAnt |
---|
245 | ------ |
---|
246 | An 'ant' task implementation for accessing subversion from the ant buildfile. |
---|
247 | |
---|
248 | More info : http://subclipse.tigris.org/svnant.html |
---|
249 | Version : 1.4-dev (http://subclipse.tigris.org/svn/subclipse/trunk/svnant@5584) |
---|
250 | License : Apache Software License 1.1 (apache.license.txt) |
---|
251 | Jar files : Everything in lib/svn/ |
---|
252 | |
---|
253 | |
---|
254 | Docbook |
---|
255 | ------- |
---|
256 | A set of DTD:s and stylesheets for creating documentation. We use |
---|
257 | the DocBook styler suite (see below) but has upgraded it to Docbook 4.5. |
---|
258 | |
---|
259 | More info: http://www.docbook.org/ |
---|
260 | Version : 4.5 |
---|
261 | License : docbook.license.txt |
---|
262 | Files : Everything in lib/docbook/docbook and dist/commons-logging-1.1.jar |
---|
263 | |
---|
264 | |
---|
265 | Docbook styler guide |
---|
266 | -------------------- |
---|
267 | An extension to docbook created by Dawid Weiss which simplifies |
---|
268 | file inclusion and building from ant. |
---|
269 | |
---|
270 | More info: http://www.cs.put.poznan.pl/dweiss/xml/projects/ant-docbook-styler/index.xml?lang=en |
---|
271 | Version : 2004_06_22-21_12 |
---|
272 | License : docbook.styler.guide.txt |
---|
273 | Files : Everything in lib/docbook except the 'docbook' subdirectory |
---|
274 | |
---|
275 | Example code syntax highlighter |
---|
276 | ------------------------------- |
---|
277 | A javascript library that can be used to dynamically highlight |
---|
278 | the syntax in program examples. We have made minor changes to |
---|
279 | make it support the HTML produced by Docbook (ie. find the language |
---|
280 | from the 'language' attribute instead of the 'class' attribute). |
---|
281 | |
---|
282 | More info: http://alexgorbatchev.com/SyntaxHighlighter/ |
---|
283 | Version : 1.5.1 |
---|
284 | License : LGPL (lgpl.txt) |
---|
285 | Files : Everything in the /doc/src/docbook/script and |
---|
286 | /doc/src/docbook/css directories |
---|
287 | |
---|
288 | Affymetrix Fusion SDK |
---|
289 | --------------------- |
---|
290 | Package for reading various Affymetrix file formats. We use a modified |
---|
291 | version that for some file formats can read from an InputStream instead |
---|
292 | of from a File object. This avoids a lot of copying and decompressing. |
---|
293 | |
---|
294 | More info: http://www.affymetrix.com/support/developer/fusion/index.affx |
---|
295 | : (original version) |
---|
296 | : http://dev.thep.lu.se/basehacks/wiki/AffxFusion |
---|
297 | : (modified version) |
---|
298 | Version : 1.09 |
---|
299 | License : LGPL (lgpl.txt) |
---|
300 | Files : AffxFusion.jar |
---|
301 | |
---|
302 | TAR file support |
---|
303 | ---------------- |
---|
304 | Package for reading and writing TAR files. |
---|
305 | |
---|
306 | More info: http://www.trustice.com/java/tar/ |
---|
307 | Version : 2.5 |
---|
308 | License : tar.license.txt |
---|
309 | Files : tar.jar |
---|
310 | |
---|
311 | BZIP file support |
---|
312 | ----------------- |
---|
313 | Package for reading and writing BZIP files. |
---|
314 | |
---|
315 | More info: http://www.kohsuke.org/bzip2/ |
---|
316 | Version : unknown |
---|
317 | License : Apache software license (apache.license.txt) |
---|
318 | Files : bzip2.jar |
---|
319 | |
---|
320 | Parallel GZIP compression |
---|
321 | ------------------------- |
---|
322 | Package for multi-threaded compression to GZIP format. |
---|
323 | |
---|
324 | More info: https://github.com/shevek/parallelgzip |
---|
325 | Version : 1.0.1 |
---|
326 | License : Apache software license (parallelgzip-LICENSE.txt) |
---|
327 | Files : parallelgzip-1.0.1.jar |
---|
328 | |
---|
329 | SecondString |
---|
330 | ------------ |
---|
331 | A package with some fuzzy string matching algorithms developed |
---|
332 | by researchers at Carnegie Mellon University. |
---|
333 | |
---|
334 | More info : http://secondstring.sourceforge.net/ |
---|
335 | Version : CVS trunk checkout (2008-08-25) |
---|
336 | License : University of Illinois/NCSA Open Source (secondstring-LICENSE.txt) |
---|
337 | Files : secondstring.jar |
---|
338 | |
---|
339 | |
---|
340 | jsDraw2D |
---|
341 | -------- |
---|
342 | A vector graphics package for JavaScript. |
---|
343 | |
---|
344 | More info : http://jsdraw2d.jsfiction.com/ |
---|
345 | Version : 1.1.0 |
---|
346 | License : LGPL v3 |
---|
347 | Files : www/include/scripts/js-draw.js |
---|
348 | |
---|
349 | JavaSysMon |
---|
350 | ---------- |
---|
351 | A library for accessing CPU and memory information on some selected |
---|
352 | operating systems (including Linux, Windows and Mac OSX). It uses |
---|
353 | native libraries targeted for each platform |
---|
354 | |
---|
355 | More info : http://github.com/jezhumble/javasysmon |
---|
356 | Version : 0.3.5 |
---|
357 | License : javasysmon-LICENSE.txt |
---|
358 | Files : javasysmon-0.3.5.jar |
---|