-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathREADME
1314 lines (934 loc) · 43.4 KB
/
README
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
README
OPEN MICROSCOPY ENVIRONMENT (OME)
Legal
Preamble
--------
Within this document, the term 'third-party software' shall refer to the set
of all the files which are contained in the source repository and which are
listed in each 'Artifacts' entry within the 'Third-Party Software Licenses'
section of this document. The term 'OME' or, equivalently, 'our software'
shall refer to any other file contained in the repository.
Purpose
-------
This document states which licenses apply to which files in the
source repository. It also gives credit to other projects and
developers that provided us with their valuable software.
OMERO.server License
---------------------
Our software is licensed under the terms of the GNU General Public License
(GPL), a copy of which may be found in the 'gpl.txt' file within this
directory.
Third-Party Software Licenses
-----------------------------
We are in debt with many open-source projects for providing us with
valuable artifacts, ranging from application libraries to graphics
files. This section lists all the third-party software that is used
by OMERO.server using the following format:
Artifacts: The files our software makes use of. The wildcard character * can
be appended to a sequence of characters S denoting a file name.
This shall mean 'all the files whose name starts with S'. For example,
'ant-*' means all the files whose name starts with 'ant-'.
Unless otherwise specified, all artifacts are to be found under
lib/repository. If specified directory pathnames are given relative to
the root of the git repository.
Project: The name of the project the artifacts belong to and a brief
(optional) description.
Web Site: The project's Web site address.
License: The type of license that applies to the files listed in 'Artifacts'.
License File: The file, within this directory, that contains the license.
//
// Follows the list, alphabetized (case-insenitively) by primary artifact:
//
Artifacts: ant-*.jar
Project: The Apache Ant Project. Ant is a Java-based build tool.
Web Site: http://ant.apache.org/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: activation-*.jar
Project: The JavaBeans(TM) Activation Framework is used by the JavaMail(TM) API to manage MIME data
Web Site: http://java.sun.com/javase/technologies/desktop/javabeans/jaf/index.jsp
License: Common Development and distribution License (CDDL) Version 1.0
License File: cddl.txt
Artifacts: antlr-*.jar
Project: Antlr, Another Tool for Language Recognition
Web Site: http://antlr.org
License: BSD
License File: antlr.txt
Artifacts: aopalliance-*.jar
Web Site: http://aopalliance.sourceforge.net
License: Public Domain
Artifacts: apacheds-all-*.jar
Project: Extensible and embeddable directory server.
Web Site: http://directory.apache.org/apacheds/
License: Apache Software License, Version 2
License File: apache-v2.0.txt
Artifacts: appbundler-*.jar
Project: Packages a Java application as a Mac app bundle.
Web Site: https://java.net/projects/appbundler
License: General Public License (GPL), Version 2
License File: gpl.txt
Artifacts: asm-*.jar
Projects: ASM, an all purpose Java bytecode manipulation and analysis framework.
Web Site: http://asm.ow2.org
License: BSD
License File: asm.txt
Artifacts: assumeng-*.jar
Projects: Assumg NG -- Assumptions for TestNG.
Web Site: https://github.com/hierynomus/assumeng
License: Apache Software License, Version 2
License File: apache-v2.0.txt
Artifacts: aspectjrt-*.jar
Projects: The runtime needed to execute a program using AspectJ.
Web Site: http://www.aspectj.org
License: Eclipse Public License, Version 1.0
License File: eclipse-v1.0.txt
Artifacts: aspectjweaver-*.jar
Projects: The AspectJ weaver introduces advices to java classes.
Web Site: http://www.aspectj.org
License: Eclipse Public License, Version 1.0
License File: eclipse-v1.0.txt
Artifacts: assumeng-*.jar
Projects: Assumg NG -- Assumptions for TestNG.
Web Site: https://github.com/hierynomus/assumeng
License: Apache Software License, Version 2
License File: apache-v2.0.txt
Artifacts: axis-*.jar
Web Site: http://axis.apache.org/
License: Apache Software License, Version 2
License File: apache-v2.0.txt
Artifacts: axis2-saaj-*.jar
Web Site: http://axis.apache.org/
License: Apache Software License, Version 2
License File: apache-v2.0.txt
Artifacts: axis-wsdl4j-*.jar
Web Site: http://axis.apache.org/
License: Apache Software License, Version 2
License File: apache-v2.0.txt
Artifacts: backport-util-concurrent-*.jar
Project: The package is the backport of java.util.concurrent API.
Web Site: http://backport-jsr166.sourceforge.net/
License: Public domain
License File:
Artifacts: batik-*.jar
Project: The Apache Batik SVG Toolkit.
Web Site: http://xml.apache.org/batik/
License: Apache Software License, Version 1.1
License File: apache-v1.1.txt
Artifacts: bcmail-jdk14-*.jar
Web Site: http://www.bouncycastle.org
License: Bouncy Castle License. To be read in the same way as the MIT License
License File: bouncy_castle_license.txt
Artifacts: bcmprov-jdk14-*.jar
Project: The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms.
The package is organised so that it contains a light-weight API suitable for use in any
environment (including the newly released J2ME) with the additional infrastructure to conform the algorithms to the JCE framework.
Web Site: http://www.bouncycastle.org/java.html
License: Bouncy Castle License. To be read in the same way as the MIT License
License File: bouncy_castle_license.txt
Artifacts: btm-*.jar
Project: Bitronix, JTA transaction manager
Web Site: http://bitronix.be
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: bsh-*.jar
Project: BeanShell
Web Site: http://www.beanshell.org/
License: Sun Public License or Lesser General Public License (LGPL) v3.0
License File: spl.txt or lgpl-v3.0.txt
Artifacts: bufr-*.jar
Web Site: http://www.unidata.ucar.edu/software/netcdf-java/
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: cglib-*.jar
Project: CGLIB, a powerful, high performance and quality Code Generation Library
Web Site: http://cfglib.sourceforge.net
License: Apache Software License, Version 1.1
License File: apache-v1.1.txt
Artifacts: checkstyle-*.jar
Project: Checkstyle, a development tool to help programmers write Java code
that adheres to a coding standard.
Web Site: http://checkstyle.sourceforge.net
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: commons-*.jar
Project: The Jakarta Commons. The Commons is a Jakarta subproject focused on
all aspects of reusable Java components.
Web Site: http://jakarta.apache.org/commons/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: Django-*
Project: Django, a high-level Python Web framework
Web Site: http://djangoproject.com
License: BSD
License File: bsd.txt
Artifacts: dom4j-*.jar
Project: DOM4J, an easy to use, open source library for working with XML,
XPath, and XSLT on the Java platform.
Web Site: http://dom4j.org
License: BSD
License File: dom4j.txt
Artifacts: ehcache-*.jar
Project: Standards-based cache.
Web Site: http://ehcache.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: findbugs-*.jar
Project: FindBugs, Find Bugs in Java Programs
Web Site: http://findbugs.sourceforge.net
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: filters-*.jar
Project: A collection of image processing filters.
Web Site: http://www.jhlabs.com/ip/index.html
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: fontbox-*.jar
Project: FontBox is a Java font library used to obtain low level information from font files.
Web Site: http://www.fontbox.org/
License: BSD License
License File: bsd.txt
Artifacts: formats-api-*.jar
Project: Top-level reader and writer APIs.
Web Site: https://www.openmicroscopy.org/bio-formats
License: BSD License
License File: bsd.txt
Artifacts: formats-bsd-*.jar
Project: Reader and writer implementations that are BSD-licensed.
Web Site: https://www.openmicroscopy.org/bio-formats
License: BSD License
License File: bsd.txt
Artifacts: formats-gpl-*.jar
Project: A library for reading and writing popular microscopy file formats.
Web Site: https://www.openmicroscopy.org/bio-formats
License: GNU General Public License v2+
License File: gpl.txt
Artifacts: freemarker-*.jar
Project: FreeMarker, a template engine
Web Site: http://freemarker.org
License: BSD-style License
License File: freemarker.txt
Artifacts: freeze-*.jar
Project: Persistent storage for Ice objects
Web Site: https://zeroc.com
License: General Public License (GPL), Version 2
License File: gpl-v2.0.txt
Artifacts: geronimo-spec-jta-*.jar
Project: Apache Geronimo
Web Site: http://geronimo.apache.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: glacier2-*.jar
Project: Firewall traversal for Ice
Web Site: https://zeroc.com
License: General Public License (GPL), Version 2
License File: gpl-v2.0.txt
Artifacts: guava-*.jar
Project: Google Core Libraries for Java.
Web Site: https://github.com/google/guava
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: guice-*.jar
Project: Google Core Libraries for Java.
Web Site: https://github.com/google/guice
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: grib-*.jar
Web Site: http://www.unidata.ucar.edu/software/netcdf-java/
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: hamcrest-core-*.jar
Project: This is the core API of hamcrest matcher framework
to be used by third-party framework providers.
This includes the a foundation set of matcher
implementations for common operations.
Web Site: http://code.google.com/p/hamcrest/
License: BSD License
License File: bsd.txt
Artifacts: hibernate-*.jar
Project: Hibernate. A powerful, high performance object/relational persistence and
query service.
Web Site: http://hibernate.org
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: httpclient-*.jar
Project: Apache HttpComponents HttpClient - MIME coded entities.
Web Site: http://hc.apache.org/httpclient-3.x/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: httpcore-*.jar
Project: Apache HttpComponents HttpClient - MIME coded entities.
Web Site: http://hc.apache.org/httpclient-3.x/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: httpmime-*.jar
Project: Apache HttpComponents HttpClient - MIME coded entities.
Web Site: https://hc.apache.org/httpcomponents-client-ga/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: ice-*.jar
Project: Internet Communications Engine (Ice). A modern object-oriented
middleware with support for C++, .NET, Java, Python, Ruby, and PHP.
Web Site: http://zeroc.com
License: General Public License (GPL), Version 2
License File: gpl-v2.0.txt
Artifacts: icegrid-*.jar
Project: Locate, deploy, and manage Ice servers.
Web Site: http://zeroc.com
License: General Public License (GPL), Version 2
License File: gpl-v2.0.txt
Artifacts: icestorm-*.jar
Project: Publish-subscribe event distribution service.
Web Site: http://zeroc.com
License: General Public License (GPL), Version 2
License File: gpl-v2.0.txt
Artifacts: ij-*.jar
Project: ImageJ is an open source Java image processing program inspired by NIH Image for the Macintosh.
Web Site: http://imagej.net/
License: Public Domain
Artifacts: ini4j-*.jar
Project: Publish-subscribe event distribution service
Web Site: http://www.ini4j.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: java-image-scaling-*.jar
Web Site: http://code.google.com/p/java-image-scaling/
License: Lesser General Public License (LGPL) v3.0
License File: lgpl-v3.0.txt
Artifacts: jai_imageio-*.jar
Web Site: http://jai-imageio.dev.java.net/
License: BSD License
License File: bsd.txt
Artifacts: jakarta-oro-*.jar
Project: Jakarta-ORO, a set of text-processing Java classes
Web Site: http://jakarta.apache.org/oro
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: jamon-*.jar
Project: JAMon, A monitoring API
Web Site: http://jamon.sourceforge.net
License: BSD License
License File: jamon.txt
Artifacts: janino-*.jar
Project: JAMon, A monitoring API
Web Site: http://janino.net
License: BSD License
License File: bsd.txt
Artifacts: java-getopt-*.jar
Project: GNU getopt -Java port
Web Site: http://www.urbanophile.com/~arenn/hacking/getopt/Package-gnu.getopt.html
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: javassist-*.jar
Project: Javassit, Java bytecode manipulation library
Web Site: http://www.csg.is.titech.ac.jp/~chiba/javassist/
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: jaxrpc-api*.jar
Project: Part of the Java Web Services Developer Pack 1.6
Web Site: http://java.sun.com/webservices/jaxrpc/index.jsp
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: jcl-over-slf4j-*.jar
Project: JCL 1.1.1 implemented over SLF4J.
Web Site: http://www.slf4j.org
License: MIT License
License File: slf4j.txt
Artifacts: jcommander-*.jar
Project: A Java framework to parse command line options with annotations.
Web Site: http://beust.com/jcommander
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: jcommon-*.jar
Project: JCommon is a free general purpose Java class library that is used in
several projects at www.jfree.org, including JFreeChart and
JFreeReport.
Web Site: http://www.jfree.org/jcommon/index.php
License: Lesser General Public License (LGPL)
License File: lgpl-v3.0.txt
Artifacts: jempbox-*.jar
Project: JempBox is an open source Java library that implements Adobe's XMP(TM) specification.
Web Site: http://www.jempbox.org/
License: BSD License
License File: bsd.txt
Artifacts: jfreechar-*.jar
Project: The JFreeChart project. Used to display professional quality charts.
Web Site: http://www.jfree.org/jfreechart/
License: Lesser General Public License (LGPL) v2.0
License File: lgpl-v2.0.txt
Artifacts: jgoodies-common-*.jar
Project: The JGoodies Common library provides convenience code
for other JGoodies libraries and applications.
Web Site: http://www.jgoodies.com/downloads/libraries.html
License: BSD License
License File: bsd.txt
Artifacts: jgoodies-forms-*.jar
Project: The JGoodies Forms framework helps you lay out and implement
elegant Swing panels quickly and consistently.
Web Site: https://forms.java.net/
License: BSD License
License File: bsd.txt
Artifacts: jhdf5-*.jar
Web Site: https://wiki-bsse.ethz.ch/display/JHDF5
License: Lesser General Public License (LGPL) v2.0
License File: lgpl-v2.0.txt
Artifacts: jhotdraw-*.jar
Project: The JHotDraw project. A two-dimensional graphics framework for
structured drawing editors.
Web Site: http://www.jhotdraw.org/
License: Lesser General Public License (LGPL) or Creative Commons Attribution 3.0 Unported
License File: lgpl.txt
Artifacts: jmock-*.jar
Project: jMock, a library that supports test-driven development of Java
code with mock objects.
Web Site: http://jmock.org
License: BSD License
License File: jmock.txt
Artifacts: jna-*.jar
Project: Java Native Access.
Web Site: https://github.com/twall/jna
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: joda-time-*.jar
Project: Date and time library to replace JDK date handling.
Web Site: http://joda-time.sourceforge.net
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: jsr107cache-*.jar
Project: jsr107cache, Java API for caching
Web Site: http://sourceforge.net/projects/jsr107cache/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: jsr305-*.jar
Project: JSR305 Annotations for Findbugs
Web Site: http://findbugs.sourceforge.net/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: jtidy-*.jar
Project: JTidy, a Java port of HTML Tidy
Web Site: http://jtidy.sourceforge.net
License: ...
License File: jtidy.txt
Artifacts: jts-*.jar
Project: Java Transaction Service (JTS) specifies the implementation of a Transaction Manager
which supports the Java Transaction API (JTA) 1.0 Specification at
the high-level and implements the Java mapping of the OMG Object
Transaction Service (OTS) 1.1 Specification at the low-level.
Web Site: http://java.sun.com/products/jts
License: Sun License
License File:
Artifacts: jul-to-slf4j-*.jar
Project: JUL to SLF4J bridge.
Web Site: http://www.slf4j.org
License: MIT License
License File: slf4j.txt
Artifacts: junit-*.jar
Project: The JUnit Testing Framework. A framework for unit-testing. All our
regression tests make use of this framework in a way or another.
Web Site: http://www.junit.org/
License: Common Public License (CPL) v1.0
License File: cpl-v10.html
Artifacts: jWlz-*.jar
Web Site: http://www.emouseatlas.org/emap/analysis_tools_resources/software/woolz.html
License: Common Public License (CPL) v1.0
License File: cpl-v10.html
Artifacts: jxrlib-all-*.jar
Project: Java bindings and pre-built native binaries for jxrlib.
Web Site: https://jxrlib.codeplex.com
License: FreeBSD License
License File: fbsd.html
Artifacts: kryo-*.jar
Project: Fast, efficient Java serialization
Web Site: https://github.com/EsotericSoftware/kryo
License: New BSD License
License File: bsd-new.txt
Artifacts: logback-*.jar
Web Site: http://logback.qos.ch
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: log4j-*.jar
Project: The Log4j Project. The logging framework used by OMERO.
Web Site: http://logging.apache.org/log4j/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: lucene-*.jar
Project: The Lucene Project. Provides Java-based indexing and search technology,
as well as spellchecking, hit highlighting, and advanced analysis/tokenization
capabilities.
Web Site: http://logging.apache.org/log4j/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: lwf-stubs-*.jar
Project: Stub of proprietary Java API to handle Luratech LWF compression.
Required to compile Bio-Formats' support for Luratech LWF compression for the Opera Flex format.
Web Site: http://www.luratech.com/
License: BSD License
License File: bsd.txt
Artifacts: mail-*.jar
License: CDDL or GPLv2+CE
License File: cddl-v1.0.txt
Artifacts: metakit-*.jar
Project: A library for reading Metakit database files.
Web Site: https://www.openmicroscopy.org/bio-formats
License: General Public License (GPL), Version 2
License File: gpl-v2.0.txt
Artifacts: mipav-stubs-*.jar
Project: Stubs of MIPAV Java classes required to compile Bio-Formats' MIPAV plugin.
Web Site: http://mipav.cit.nih.gov
License: BSD License
License File: bsd.txt
Artifacts: metric-core-*.jar, metrics-graphite-*.jar, metrics-jvm-*.jar, metrics-logback-*.jar
Project: Metrics is a Java library which gives you unparalleled insight into what your code does in
production. Metrics provides a powerful toolkit of ways to measure the behavior of critical
components in your production environment.
Web Site: http://metrics.dropwizard.io/3.2.2/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: metadata-extractor-*.jar
Project: Java library for reading metadata from image files.
Web Site: http://code.google.com/p/metadata-extractor
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: minlog-*.jar
Project: Minimal overhead Java logging
Web Site: http://code.google.com/p/minlog/
License: New BSD License
License File: bsd-new.txt
Artifacts: native-lib-loader-*.jar
Project: A library for loading native libraries.
Web Site: http://github.com/scijava/native-lib-loader
License: FreeBSD License
License File: fbsd.txt
Artifacts: netcdf-*.jar
Web Site: http://www.unidata.ucar.edu/software/netcdf-java/
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: objenesis-*.jar
Project: A library for instantiating Java objects.
Web Site: http://objenesis.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: ome-common-*.jar
Project: Contains common I/O, date parsing, and XML processing classes.
Web Site: https://www.openmicroscopy.org/bio-formats
License: BSD License
License File: bsd.txt
Artifacts: ome-mdbtools-*.jar
Project: Java API to handle Microsoft MDB format (Access).
Used by Bio-Formats for Zeiss LSM metadata in MDB files.
Web Site: http://sourceforge.net/forum/message.php?msg_id=2550619
License: General Public License (GPL), Version 2
License File: gpl-v2.0.txt
Artifacts: ome-poi-*.jar
Project: Java API to handle Microsoft OLE 2 Compound Document format (Word, Excel).
Based on poi-2.5.1-final-20040804.jar, with bugfixes for OLE v2 and
memory efficiency improvements.
Used by Bio-Formats for OLE support (cxd, ipw, oib, zvi).
Used by VisBio overlays logic for XLS export feature.
Web Site: http://jakarta.apache.org/poi/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: ome-xml-*.jar
Project: A library for working with OME-XML metadata structures.
Web Site: https://docs.openmicroscopy.org/ome-model/
License: BSD License
License File: bsd.txt
Artifacts: specification-*.jar
Project: The OME Data Model specification.
Web Site: https://docs.openmicroscopy.org/ome-model/
License: BSD License or Creative Commons Attribution 3.0 Unported License
License File: bsd.txt
Artifacts: oro-*.jar
Web Site: http://jakarta.apache.org/oro/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: pdfbox-*.jar
Project: PDFBox is an open source Java PDF library for working with PDF documents.
Web Site: http://www.pdfbox.org/
License: BSD License
License File: bsd.txt
Artifacts: perf4j-*.jar
Project: Perf4j, a set of utilites for calculating and displaying performance statistics.
Web Site: http://perf4j.codehaus.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: platform-*.jar
Project: Java Native Access Platform.
Web Site: https://github.com/twall/jna
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: poi-*.jar
Project: Apache Project Java API To Access Microsoft Format Files.
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: postgresql-*.jar
Project: PostgreSQL JDBC driver.
Web Site: http://jdbc.postgresql.org
License: PostgreSQL License
License File: postgresql.txt
Artifacts: quartz-*.jar
Project: OpenSymphony's Quartz Scheduler.
Web Site: http://www.quartz-scheduler.org/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: reportng-*.jar
Project: ReportNG An HTML/XML Reporting Plug-in for TestNG
Website: http://reportng.uncommons.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: scons-local-*.zip
Project: SCons, an Open Source software construction tool
Web Site: http://scons.org
License: MIT
License File: scons.txt
Artifacts: setuptools-*.egg
Project: setuptools, a collection of enhancements to the Python distutils.
Web Site: http://pypi.python.org/pypi/setuptools
License: PSF v2.5 or ZPL v2.1
License File: psf-v2.5.txt or zpl-v2.1.txt
Artifacts: serializer-*.jar
Project: Serializer to write out XML, HTML etc. as a stream of characters from an input DOM or from input
SAX events.
Web Site: http://xml.apache.org/xalan-j/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: shared-*.jar
Project: Collections of utils packages
Web Site:
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: slf4j-*.jar
Project: SLF4J, Simple Logging Facade for Java
Web Site: http://slf4j.org
License: MIT License
License File: slf4j.txt
Artifacts: snakeyaml-*.jar
Project: YAML 1.1 parser and emitter for Java
Web Site: http://code.google.com/p/snakeyaml
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: spring-*.jar
Project: Spring Framework. A layered Java application platform.
Website: http://springframework.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: subethasmtp-*.jar
Project: SubEtha SMTP is an easy-to-use server-side SMTP library for Java
Website: https://code.google.com/p/subethasmtp
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: swingx-*.jar
Project: The Swing labs project.
SwingLabs is an Open Source laboratory for exploring new ways to make
Swing applications easier to write, with improved performance and
greater visual appeal.
Web Site: http://swinglabs.org/
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: TableLayout-*.jar
Project: TableLayout Project is layout manager
Web Site: http://java.sun.com/products/jfc/tsc/articles/tablelayout/
License: Sun License
License File: tablelayout.txt
Artifacts: testng-*.jar
Project: TestNG, a testing framework inspired by JUnit and NUnit but introducing
some new functionalities that make it more powerful and easy to use.
Web Site: http://testng.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: turbojpeg-*.jar
Project: Java bindings and pre-built binaries for libjpeg-turbo.
Web Site: http://libjpeg-turbo.virtualgl.org/
License: FreeBSD License
License File: fbsd.txt
Artifacts: velocity-*.jar
Project: Apache Velocity. A Java-based template engine.
Website: http://velocity.apache.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: xalan-*.jar
Project: Xalan-Java is an XSLT processor for transforming XML documents into HTML,
text, or other XML document types. It implements XSL Transformations (XSLT)
Version 1.0 and XML Path Language (XPath) Version 1.0 and can be used from
the command line, in an applet or a servlet, or as a module in other program.
Website: http://xml.apache.org/xalan-j/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: xerces-*.jar xercesImpl-*.jar xml-apis-*.jar
Project: The Xerces2 Java Parser. An XML parser which is used by Ant.
Web Site: http://xml.apache.org/xerces2-j/
License: Apache Software License, Version 1.1
License File: apache-v1.1.txt
Artifacts: xml-apis-*.jar
Project: xml-commons provides an Apache-hosted set of DOM, SAX, and
JAXP interfaces for use in other xml-based projects. Our hope is that we
can standardize on both a common version and packaging scheme for these
critical XML standards interfaces to make the lives of both our developers
and users easier. The External Components portion of xml-commons contains
interfaces that are defined by external standards organizations. For DOM,
that's the W3C.
Web Site: http://xml.apache.org/commons/#external
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: xmpcore-*.jar
Project: The XMP Library for Java is based on the C++ XMPCore library
and the API is similar.
Web Site: http://www.adobe.com/devnet/xmp.html
License: BSD License
License File: bsd.txt
Artifacts: xpp3-*.jar
Project: The XMP Library for Java is based on the C++ XMPCore library
and the API is similar.
Web Site: http://www.adobe.com/devnet/xmp.html
License: Indiana University Extreme! Lab Software License, version 1.1.1 or Public Domain or
Apache License, version 1.1
License File: apache-v1.1.txt
//
// Located under components/
//
Artifacts: components/blitz/src/org/hibernate/stat/ConcurrentStatisticsImpl.java
Project: Hibernate. A powerful, high performance object/relational persistence and
query service.
Web Site: http://hibernate.org
License: Lesser General Public License (LGPL) v2.1
License File: lgpl-v2.1.txt
Artifacts: components/server/src/ome/services/SVGRasterizer.java
Project: Batik Java SVG Toolkit
Web Site: http://xmlgraphics.apache.org/batik/tools/rasterizer.html
License: Apache License, Version 1.1
License File: apache-v1.1.txt
Artifacts: components/server/test/org/springframework/security/ldap/server/ApacheDSContainer.java
Project: Spring Framework. A layered Java application platform.
Website: http://springframework.org
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: components/tools/OmeroWeb/omeroweb/webclient/static/webclient/image
components/tools/OmeroWeb/omeroweb/webgateway/static/webgateway/img
components/tools/OmeroWeb/omeroweb/webadmin/static/webadmin/image
Project: IconSweets
Website: http://www.iconsweets.com/
License: Free for Commercial and Personal Use
License File: iconsweets_license.txt
Artifacts: components/tools/OmeroPy/src/omero_ext/argparse.py
Project: argparse: Python command line parser
Web Site: http://code.google.com/p/argparse/
License: Apache License, Version 2.0
License File: apache-v2.0.txt
Artifacts: components/tools/OmeroPy/src/omero_ext/cloghandler.py